@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --primary: #E8714D;
  --primary-dark: #D94A1F;
  --primary-light: #FFF0EB;
  --accent-red: #E60012;
  --accent-gold: #D4AF37;
  --accent-pink-gold: #E8B4A8;
  --text-main: #1a1a1a;
  --text-sub: #4d4d4d;
  --text-light: #737373;
  --bg-main: #fff;
  --bg-sub: #f8f9fa;
  --border-main: #e0e0e0;
  --border-light: #f0f0f0;
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-main: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-deep: 0 8px 32px rgba(0,0,0,0.12);
  --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -webkit-text-rendering: optimizeLegibility; }
html, body { width: 100%; overflow-x: hidden; }
body { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text-main); background: var(--bg-main); line-height: 1.6; font-size: 16px; letter-spacing: -0.3px; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; position: relative; }

.site-header { background: #fff; border-bottom: 1px solid var(--border-main); position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: var(--shadow-soft); }
body { padding-top: 80px; }
.header-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; height: 80px; display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 768px) { body { padding-top: 118px; } }
@media (max-width: 480px) { body { padding-top: 118px; } }
.logo { font-size: 24px; font-weight: 900; color: var(--primary); letter-spacing: -1.5px; line-height: 0; }
.logo a { display: flex; align-items: center; }
.logo-img { height: 50px; max-height: 50px; width: auto; max-width: 120px; display: block; object-fit: contain; vertical-align: middle; }
.gnb { display: flex; gap: 50px; height: 100%; margin-left: 80px; }
.gnb > li { height: 100%; display: flex; align-items: center; position: relative; }
.gnb > li > a { font-size: 16px; font-weight: 700; color: var(--text-main); transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
@media (min-width: 1024px) {
  .logo-img { height: 58px; max-height: 58px; max-width: 150px; }
  .gnb { gap: 68px; }
  .gnb > li > a { font-size: 18px; }
}
.gnb > li:hover > a { color: var(--primary); }
.header-search { display: flex; align-items: center; margin: 0 30px; background: #f5f5f5; border-radius: 8px; padding: 0 14px; height: 42px; }
.search-input { background: none; border: none; outline: none; font-size: 14px; width: 140px; color: var(--text-main); }
.search-input::placeholder { color: #999; }
.search-btn { background: none; border: none; cursor: pointer; font-size: 16px; padding: 0; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.contact-label { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }
.contact-number { font-size: 16px; font-weight: 900; color: var(--accent-red); letter-spacing: -0.5px; }

.mega-menu { position: fixed; top: 80px; left: 0; width: 100%; background: #fff; border-bottom: 1px solid var(--border-main); box-shadow: 0 12px 40px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; max-height: 500px; overflow: hidden; }
.gnb > li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-inner { max-width: var(--container-width); margin: 0 auto; padding: 45px 40px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(200px, 236px); gap: 40px 48px; align-items: start; }
.mega-menu-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 28px 40px; min-width: 0; align-content: start; }
.mega-menu-col h4 { font-size: 15px; font-weight: 800; margin-bottom: 22px; color: var(--text-main); letter-spacing: -0.3px; }
.mega-menu-root-link { color: inherit; text-decoration: none; }
.mega-menu-root-link:hover { color: var(--primary); }
.mega-menu-col ul li { margin-bottom: 14px; }
.mega-menu-col ul li a { font-size: 14px; color: var(--text-sub); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.mega-menu-col ul li a:hover { color: var(--primary); font-weight: 600; }
.mega-menu-promo { background: transparent; border-radius: 0; padding: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; text-align: left; gap: 12px; min-width: 0; }
.mega-menu-promo .img-box { width: 100%; aspect-ratio: 236 / 120; height: auto; min-height: 0; background: #e8f0f5; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 12px; flex-shrink: 0; overflow: hidden; position: relative; text-decoration: none; }
.mega-menu-promo a.img-box { color: inherit; cursor: pointer; }
.mega-menu-promo .img-box > picture { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; line-height: 0; }
.mega-menu-promo .img-box > picture img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.mega-menu-promo .img-box > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.mega-menu-promo p { font-size: 12px; color: #666; margin: 0; }
.mega-menu-promo .img-box:nth-child(3) { margin-top: 8px; }

.main-slider { position: relative; height: 600px; background: linear-gradient(135deg, #f5f8fc 0%, #eef3f9 100%); overflow: hidden; margin-bottom: 40px; border-radius: 0; }
.list-page .main-slider { height: 380px; margin-bottom: 15px; }
.list-page .slide-text h2 { font-size: 42px; }
.list-page .slide-text p { font-size: 16px; margin-bottom: 30px; }
.list-page .slide-img { height: 320px; border-radius: 16px; }
.list-page .slide-img-placeholder { background: transparent; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 15px; font-weight: 600; letter-spacing: -0.3px; }
.list-page .slide-btn { padding: 12px 28px; font-size: 14px; display: inline-block; background: var(--primary); color: #fff; border-radius: 8px; font-weight: 800; text-decoration: none; }
.list-page .slide-btn:hover { background: var(--primary-dark); color: #fff; }
.list-page { overflow: visible; }
.list-page-breadcrumb-bar { padding-bottom: 10px; }
.list-page-breadcrumb-bar .supp-breadcrumbs { margin-bottom: 0; }
.list-page-container { padding: 0 40px; padding-top: 18px; padding-bottom: 60px; }
.list-page-title { font-size: 32px; font-weight: 900; letter-spacing: -1px; margin-bottom: 24px; }
.list-page-container .filter-wrap { margin-bottom: 20px; }
.list-page-container .sub_sort { padding: 12px 0; margin-bottom: 0; }
@media (max-width: 768px) {
  .list-page .main-slider { height: 220px; margin-bottom: 10px; min-height: 200px; }
  .list-page .slide-content { padding: 24px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .list-page .slide-text { padding: 0; }
  .list-page .slide-text h2 { font-size: 22px; margin-bottom: 8px; line-height: 1.35; letter-spacing: -0.5px; }
  .list-page .slide-text p { font-size: 13px; margin-bottom: 16px; line-height: 1.5; }
  .list-page .slide-img { display: none; }
  .list-page .slide-btn { padding: 10px 22px; font-size: 13px; }
  /* 제품 목록: 필터 박스 높이 축소(모바일) */
  .list-page-container .filter-wrap { padding: 8px 10px 10px; margin-bottom: 10px; border-radius: 12px; }
  .list-page-container .filter-wrap-header { padding-bottom: 0; margin-bottom: 4px; border-bottom: none; }
  .list-page-container .filter-reset-btn { padding: 6px 12px; font-size: 12px; }
  .list-page-container .filter-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 4px 0;
  }
  .list-page-container .filter-label { width: 76px; font-size: 12px; margin-bottom: 0; }
  .list-page-container .filter-opt { padding: 4px 9px; font-size: 12px; }
  .list-page-container .filter-select { padding: 8px 36px 8px 10px; font-size: 13px; }
}
.slider-track { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; display: flex; align-items: center; transition: opacity 0.5s ease; pointer-events: none; }
.slide.active { opacity: 1; z-index: 1; pointer-events: auto; }
.slide-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; }
.slide-item.active { opacity: 1; z-index: 1; }
.slide-link-overlay { position: absolute; inset: 0; z-index: 2; }
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-bg .slide-bg-img, .slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.slide-content { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; position: relative; z-index: 1; }
.main-slider .slide-content-banner { display: block; text-align: center; padding: 100px 0; }
.main-slider .slide-content-banner .slide-text { max-width: 100%; }
.main-slider .slide-content-banner .slide-text h2 { font-size: 56px; font-weight: 900; line-height: 1.15; margin-bottom: 24px; letter-spacing: -2px; color: var(--text-main); }
.main-slider .slide-content-banner .slide-text p { font-size: 18px; color: var(--text-sub); margin-bottom: 45px; line-height: 1.7; }
.slide-text h2 { font-size: 56px; font-weight: 900; line-height: 1.15; margin-bottom: 24px; letter-spacing: -2px; color: var(--text-main); }
.slide-text p { font-size: 18px; color: var(--text-sub); margin-bottom: 45px; line-height: 1.7; }
.slide-img { width: 100%; height: 450px; background: #fff; border-radius: 24px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 14px; }

/* 메인 배너 슬라이더: 점(dot) 인디케이터 */
.main-slider .slider-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.main-slider .slider-indicators .indicator-item {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.28);
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.main-slider .slider-indicators .indicator-item:hover {
  background: rgba(30, 41, 59, 0.45);
  transform: scale(1.08);
}
.main-slider .slider-indicators .indicator-item.active {
  width: 26px;
  border-radius: 5px;
  background: var(--primary);
}
.main-slider .slider-indicators .indicator-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* 메인 퀵메뉴 (배너 하단) */
.home-quick-menu-wrap {
  padding: 24px 0 22px;
  margin-top: -4px;
}
.home-quick-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px 40px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.2) transparent;
}
.home-quick-menu__list::-webkit-scrollbar {
  height: 5px;
}
.home-quick-menu__list::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}
.home-quick-menu__item {
  flex: 0 0 auto;
  width: 96px;
  text-align: center;
}
.home-quick-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.2px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.home-quick-menu__link:hover {
  color: var(--primary);
}
.home-quick-menu__link:not(.home-quick-menu__link--static):active {
  transform: scale(0.97);
}
.home-quick-menu__link--static {
  cursor: default;
  color: var(--text-sub);
}
.home-quick-menu__icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
/* box-shadow: 0 3px 14px rgba(15, 23, 42, 0.07); */
box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.home-quick-menu__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-quick-menu__placeholder {
  width: 34px;
  height: 34px;
  color: rgba(30, 41, 59, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-quick-menu__placeholder svg {
  width: 100%;
  height: 100%;
}
.home-quick-menu__label {
  display: block;
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* 메인 대분류(정수기 등) 하위 2차 탭 */
.home-category-section .section-header {
  margin-bottom: 15px;
}
.home-category-section .section-header h3 {
  font-size: 32px;
  margin-bottom: 0;
}
.home-category-section .home-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  margin: 0 0 24px;
}
.home-cat-tab {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.home-cat-tab:hover {
  color: #333;
  background: #eee;
  border-color: #ddd;
}
.home-cat-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #E8714D 0%, #E60012 100%);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(232, 113, 77, 0.28);
}
.home-cat-tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.home-cat-tab-panels { position: relative; }
.home-cat-panel[hidden] { display: none !important; }

.section-padding { padding: 20px 0 20px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2,
.section-header h3 { font-size: 38px; font-weight: 900; margin-bottom: 18px; letter-spacing: -1.2px; }
.section-header p { font-size: 16px; color: var(--text-sub); letter-spacing: -0.2px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.product-card { background: #fff; border-radius: 24px; border: 1px solid var(--border-light); overflow: hidden; transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); position: relative; display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-12px); box-shadow: 0 24px 48px rgba(0,0,0,0.12); border-color: var(--primary); }

.card-img-wrap { position: relative; padding-top: 72%; background: transparent; min-height: 120px; max-height: 168px; overflow: hidden; border-radius: 12px; }
.card-side-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 10; }
.card-side-badges--right { left: auto; right: 10px; }
.card-side-badge { width: 52px; height: 52px;  display: flex; align-items: center; justify-content: center; text-align: center; font-size: 11px; font-weight: 800; line-height: 1.3; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.card-side-badge-red { background: #E60012; color: #fff; }
.card-side-badge-green { background: #fff; border: 2px solid #2E7D32; color: #2E7D32; }
.card-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #999; background: transparent; }
.card-img img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; background: transparent; display: block; }

/* PC·태블릿(768px 초과): 메인·목록·검색 등 제품 카드 썸네일 영역 ≈ 350×350 */
@media (min-width: 769px) {
  .product-grid .card-img-wrap,
  .search-product-grid .card-img-wrap {
    padding-top: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 350px;
    min-height: 0;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
  }
  .product-grid .card-img-wrap .card-img img,
  .search-product-grid .card-img-wrap .card-img img {
    max-width: 100%;
    max-height: 100%;
  }
}

/* DB 카탈로그 카드 — 참고 시안(큰 썸네일·색상 행·구독/제휴가) */
.product-card--db { border-radius: 20px; border-color: #ececec; }
.product-card--db:hover { border-color: var(--primary); }
.product-card--db .card-img-wrap--catalog {
  background: #e8e8e8;
  border-radius: 18px;
  margin: 14px 14px 0;
  width: auto;
  overflow: hidden;
}
.product-card--db .card-img { background: transparent; }
.product-card--db .card-side-badge-recommended {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 4px 8px;
  background: #fff;
  color: #E8714D;
  border: 2px solid #E8714D;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.product-card--db .card-color-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px 0;
}
.product-card--db .card-color-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  letter-spacing: -0.2px;
}
.product-card--db .card-colors--row {
  margin-bottom: 0;
}
.product-card--db .color-chip--catalog {
  width: 22px;
  height: 22px;
  border-width: 2px;
}
.product-card--db .card-body--catalog {
  padding: 14px 18px 20px;
}
.product-card--db .card-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.product-card--db .card-model--catalog {
  font-size: 12px;
  color: #9a9a9a;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.product-card--db .card-rating {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card--db .card-rating-star {
  color: #E8714D;
  margin-right: 2px;
}
.product-card--db .card-rating-count {
  font-weight: 600;
  color: #888;
}
.product-card--db .card-product-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.35px;
  margin: 0 0 7px;
  color: #111;
}
.product-card--db .card-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 9px;
}
.product-card--db .card-pill--solid {
  display: inline-flex;
  align-items: center;
  padding: 1px 4px;
  border-radius: 6px;
  background: #FF7F36;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.product-card--db .card-pill--outline {
  display: inline-flex;
  align-items: center;
  padding: 1px 4px;
  border-radius: 6px;
  border: 1.5px solid #FF7F36;
  color: #FF7F36;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.product-card--db .card-subscribe-line {
  margin-bottom: 8px;
  font-size: 14px;
font-weight: 500;
  color: #555;
  line-height: 1.55;
}
.product-card--db .card-price-block {
  border-top: 1px solid #eee;
  padding-top: 14px;
}
.product-card--db .card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  line-height:28px;
}
.product-card--db .card-price-row-label {
  font-size: 17px;
  font-weight: 400;
  color: #222;
  flex-shrink: 0;
}
.product-card--db .card-price-row-val {
  text-align: right;
  flex: 1;
}
.product-card--db .card-price-rental-val {
  text-decoration: line-through;
  color: #aaa;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.2px;
}
.product-card--db .card-price-promo {
  font-size: 17px;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.5px;
}
.product-card--db .card-price-row-val .num {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.5px;
}
.product-card--db .card-price-won {
  font-size: 15px;
  font-weight: 400;
  margin-left: 2px;
  color: #aaa;
}
.card-price-card-val .num {
    color: #dc4c45;
    font-weight: 700;
    font-size: 24px;
}
.product-card--db .card-price-cardline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  line-height:28px;
}
.product-card--db .card-price-card-label {
  font-size: 17px;
  font-weight: 400;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-card--db .card-help-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 10px;
  font-weight: 800;
  color: #999;
  line-height: 1;
  cursor: help;
}
.product-card--db .card-price-card-val {
  font-size: 15px;
  font-weight: 400;
  color: #dc4c45;
  letter-spacing: -0.3px;
}

.card-badges { position: absolute; top: 12px; right: 12px; left: auto; display: flex; gap: 6px; z-index: 2; }
.badge { padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.3px; }
.badge.blue { background: var(--primary); }
.badge.green { background: #00d4aa; }
.badge.orange { background: #ff8a00; }
.card-icons { position: absolute; bottom: 16px; right: 16px; display: flex; gap: 8px; z-index: 2; flex-wrap: wrap; flex-direction: column; }
.icon-tag { background: rgba(255,255,255,0.96); border: 1px solid var(--border-main); padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; color: var(--text-sub); }
.icon-tag.tag-hot { background: #FFE5CC; color: #D97706; border-color: #FFD699; }
.icon-tag.tag-cold { background: #CCEEFF; color: #0066CC; border-color: #99DDFF; }
.icon-tag.tag-purify { background: #E8F5E9; color: #2E7D32; border-color: #C8E6C9; }
.icon-tag.tag-ice { background: #F0F4FF; color: #3F51B5; border-color: #E0E7FF; }

.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: 11px; font-weight: 800; color: var(--primary); margin-bottom: 6px; letter-spacing: -0.2px; }
.card-promo-sub { display: flex; flex-direction: column; gap: 3px; font-size: 11px; color: var(--text-sub); margin-bottom: 10px; line-height: 1.4; }
.card-promo-sub span { display: block; }
.product-card--db .card-side-badge { width: auto; min-width: 48px; max-width: 72px; padding: 4px 6px; font-size: 12px; font-weight: 700; line-height: 1.25; word-break: keep-all; }
.card-colors { display: flex; gap: 6px; margin-bottom: 12px; align-items: center; }
.color-chip { width: 18px; height: 18px; border-radius: 50%; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid #fff; box-shadow: 0 0 0 1.5px #ddd; }
.color-chip:hover { box-shadow: 0 0 0 2px var(--primary); transform: scale(1.1); }
.color-chip.white { background: #fff; border: 2px solid #ddd; box-shadow: 0 0 0 0.5px #ccc; }
.color-chip.beige { background: #f5e6d3; }
.color-chip.black { background: #2a2a2a; }
.color-chip.gold { background: #d4af37; }
.card-model { font-size: 11px; color: #999; margin-bottom: 8px; letter-spacing: 0.5px; font-weight: 500; }
.product-model-label { font-size: 11px; color: #aaa; font-weight: 500; margin-bottom: 2px; letter-spacing: -0.2px; line-height: 1.2; }
.detail-model-label { font-size: 11px; color: #aaa; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.2px; display: block; line-height: 1.3; }
.card-name { font-size: 16px; font-weight: 800; margin-bottom: 10px; line-height: 1.5; letter-spacing: -0.3px; display: flex; align-items: center; justify-content: space-between; }
.star-rating { font-size: 12px; color: var(--text-light); font-weight: 600; }
.card-prices { border-top: 1px solid var(--border-light); padding-top: 16px; }
.price-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.price-item .label { font-size: 11px; color: var(--text-light); font-weight: 500; letter-spacing: 0.2px; }
.price-item .val { font-size: 13px; font-weight: 700; letter-spacing: -0.3px; }
.price-item:first-child .val { text-decoration: line-through; color: #999; font-size: 12px; }
.price-item.promo .val { color: var(--primary); font-size: 16px; font-weight: 900; }
.price-item.card-benefit .val { color: #ff4d4d; font-size: 18px; font-weight: 900; }
.expert-tip { margin-top: 14px; background: #f8f9fa; padding: 11px 12px; border-radius: 6px; font-size: 11px; color: #888; font-weight: 500; line-height: 1.5; border: none; box-shadow: inset 0 1px 3px rgba(0,0,0,0.05); }

.review-section { background: var(--bg-sub); padding: 50px 0; }
.review-slider { position: relative; overflow: hidden; padding: 25px 0; }
.review-track { display: flex; gap: 24px; animation: scroll 45s linear infinite; width: max-content; }
.review-section-actions { text-align: center; margin-top: 32px; }
.review-section-actions .btn { min-width: 160px; }
.review-item { width: 360px; background: #fff; padding: 32px; border-radius: 20px; box-shadow: var(--shadow-soft); flex-shrink: 0; border: 1px solid var(--border-light); }
.review-item-header { display: flex; gap: 12px; margin-bottom: 18px; align-items: center; }
.review-avatar { width: 48px; height: 48px; background: #e8f0f5; border-radius: 50%; flex-shrink: 0; }
.review-meta { display: flex; flex-direction: column; }
.review-user { font-size: 13px; font-weight: 700; color: var(--text-main); }
.stars { color: #ffb800; font-size: 13px; }
.review-text { font-size: 14px; font-weight: 500; color: var(--text-main); line-height: 1.7; }
.review-item-photo { margin-bottom: 14px; border-radius: 14px; overflow: hidden; background: #eef2f6; max-height: 170px; }
.review-item-photo img { width: 100%; height: 150px; object-fit: cover; display: block; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-360px * 5 - 24px * 5)); } }
@media (max-width: 768px) {
  @keyframes scroll-mobile { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-280px * 6 - 24px * 6)); } }
  .review-track { animation: scroll-mobile 50s linear infinite; }
}

.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-item { height: 260px; background: #e0e0e0; border-radius: 18px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; color: #999; font-size: 14px; }
.promo-item img { width: 100%; height: 100%; object-fit: cover; }

.footer-partner { background: #f5f5f5; padding: 50px 0; border-top: 1px solid #e8e8e8; }
.partner-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.partner-text h5 { font-size: 18px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.partner-text p { font-size: 14px; color: var(--text-sub); letter-spacing: -0.2px; }
.sms-btn { background: #fff; border: 1.5px solid #333; padding: 13px 28px; border-radius: 32px; font-weight: 800; display: flex; align-items: center; gap: 10px; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.sms-btn:hover { background: #333; color: #fff; }
.partner-inner .sms-btn { display: inline-flex; align-self: center; }

.site-footer { background: #2a2a2a; color: #fff; padding: 80px 0 40px; border-top: 1px solid #444; }
.site-footer--compact {
  background: #333333;
  border-top: none;
  padding: 36px 0 32px;
  color: #fff;
}
.footer-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; margin-bottom: 50px; }
.footer-inner--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 0;
  padding: 0 40px;
}
.footer-business-lines {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-line {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #f2f2f2;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.footer-line--cs {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.footer-line__phone {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  margin: 0 4px;
}
.footer-line__phone:hover {
  text-decoration: underline;
}
.footer-line__link {
  color: #f2f2f2;
  text-decoration: none;
}
.footer-line__link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-line__sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-line--legal {
  margin-top: 4px;
  font-size: 12px;
  color: #e8e8e8;
}
.footer-line--copy {
  margin-top: 2px;
  font-size: 12px;
  color: #e0e0e0;
}
.footer-cert-slot {
  flex: 0 0 auto;
  width: auto;
  max-width: min(520px, 50vw);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-cert-qr {
  width: 100%;
  height: auto;
  max-width: 520px;
  aspect-ratio: 900 / 350;
  object-fit: contain;
  object-position: right center;
  display: block;
}
.footer-nav-columns { grid-column: 1 / span 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; align-items: start; }
.footer-section h3 { font-size: 14px; font-weight: 800; margin-bottom: 20px; letter-spacing: 0.3px; color: #fff; }
.footer-section ul { display: flex; flex-direction: column; gap: 12px; }
.footer-section ul li a { font-size: 12px; color: #aaa; transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); line-height: 1.6; }
.footer-section ul li a:hover { color: var(--primary); }
.footer-contact h3 { font-size: 14px; font-weight: 800; margin-bottom: 16px; letter-spacing: 0.3px; color: #fff; }
.footer-contact p { font-size: 12px; color: #aaa; line-height: 1.7; margin-bottom: 8px; }
.footer-contact .sms-btn { display: inline-flex; align-self: flex-start; padding: 12px 20px; background: var(--primary); color: #fff; border-radius: 8px; font-size: 12px; font-weight: 700; margin-top: 16px; transition: all 0.3s ease; }
.footer-contact .sms-btn:hover { background: var(--primary-dark); }
.footer-bottom { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; border-top: 1px solid #444; padding-top: 30px; text-align: center; font-size: 12px; color: #777; }
.footer-contact .footer-extra { font-size: 14px; color: #999; margin-top: 12px; }
.flash-success { background: #e8f5e9; color: #2e7d32; padding: 12px 16px; border-radius: 8px; font-weight: 600; }

.bottom-fixed-bar { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(150px); width: 70%; background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(240, 90, 40, 0.2); border-radius: 20px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); z-index: 900; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(10px); }
.bottom-fixed-bar.show { transform: translateX(-50%) translateY(0); }
/* 메인 구독문의 바: 제품상세처럼 둥글게 + 스크롤 시 스르륵 등장 */
@media (min-width: 769px) {
  .bottom-fixed-bar.bottom-bar-inquiry {
    width: 92%; max-width: 960px;
    border-radius: 50px;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    opacity: 0; visibility: hidden;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  }
  .bottom-fixed-bar.bottom-bar-inquiry.show {
    bottom: 25px; opacity: 0.9; visibility: visible;
  }
}
@media (max-width: 768px) {
  .bottom-bar-inquiry-wrap.expanded .bottom-fixed-bar.bottom-bar-inquiry { border-radius: 20px 20px 0 0; }
}
.bottom-bar-inner { padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
.bottom-left { display: flex; align-items: center; gap: 30px; flex: 1; }
.event-notice { display: flex; align-items: center; gap: 14px; background: #fff5f5; padding: 10px 20px; border-radius: 28px; border: 1px solid #ffe3e3; }
.event-badge { background: var(--primary); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.3px; }
.event-text { font-size: 12px; font-weight: 700; color: #333; letter-spacing: -0.2px; }
.bottom-price-info { display: flex; flex-direction: column; gap: 2px; }
.bottom-price-info .label { font-size: 11px; color: #999; font-weight: 600; letter-spacing: -0.2px; }
.bottom-price-info .val { font-size: 18px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
.bottom-btns { display: flex; gap: 10px; }

/* Floating Consultation Banner */
/* 우측 플로팅 레일 — 상담문의 · 카카오 · 맨 위로 */
.floating-side-rail {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(32px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.5s;
}
.floating-side-rail.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.floating-side-rail__consult-card {
  width: 90px;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid #ddd;
  background: #fff;
}
.floating-side-rail__consult-top {
  padding: 14px 10px 12px;
  text-align: center;
  background: #fff;
  border-radius: 14px 14px 0 0;
}
.floating-side-rail__consult-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: #222;
  letter-spacing: -0.03em;
}
.floating-side-rail__consult-phone {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #E60012;
  text-decoration: none;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.floating-side-rail__consult-phone:hover {
  color: #c4000f;
}
.floating-side-rail__consult-action {
  width: 100%;
  border: none;
  background: #E60012;
  color: #fff;
  padding: 12px 8px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  overflow: visible;
  border-radius: 0 0 14px 14px;
  transition: background 0.2s ease;
}
.floating-side-rail__consult-action:hover {
  background: #cc0010;
}
.floating-side-rail__consult-icon-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.floating-side-rail__consult-icon-slot img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.floating-side-rail__consult-action-text {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.floating-side-rail__kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  border: none;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.floating-side-rail__kakao:hover {
  filter: brightness(0.97);
}
.floating-side-rail__kakao:active {
  transform: scale(0.96);
}
.floating-side-rail__kakao img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: none;
}
.floating-side-rail .scroll-to-top-btn,
.floating-side-rail__top {
  position: static;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #7a7a7a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.floating-side-rail .scroll-to-top-btn:hover,
.floating-side-rail__top:hover {
  background: #666;
  color: #fff;
}
.floating-side-rail .scroll-to-top-btn:active,
.floating-side-rail__top:active {
  transform: scale(0.96);
}
@media (max-width: 768px) {
  .floating-side-rail {
    top: auto;
    bottom: 100px;
    right: 16px;
    transform: translateY(24px);
    gap: 10px;
  }
  .floating-side-rail.is-visible {
    transform: translateY(0);
  }
  .floating-side-rail__consult-card {
    display: none;
  }
/* 카카오톡 버튼 */
.floating-side-rail__kakao {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.floating-side-rail__kakao img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* 화살표 원 */
.floating-side-rail .scroll-to-top-btn,
.floating-side-rail__top {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
  .floating-side-rail .scroll-to-top-btn svg,
  .floating-side-rail__top svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 769px) {
  .floating-side-rail {
    left: auto;
    right: 24px;
    top: auto;
    bottom: 140px;
    transform: translateY(24px);
  }

  .floating-side-rail.is-visible {
    transform: translateY(0);
  }

  .floating-side-rail__consult-icon-slot {
    width: 78px;
    height: 78px;
    margin: -25px 0 -18px;
    flex-shrink: 0;
  }

  .floating-side-rail__consult-icon-slot img {
    width: 78px;
    height: 78px;
  }

  .floating-side-rail__kakao {
    width: 70px;
    height: 70px;
  }

  .floating-side-rail .scroll-to-top-btn,
  .floating-side-rail__top {
    width: 50px;
    height: 50px;
  }

  .floating-side-rail .scroll-to-top-btn svg,
  .floating-side-rail__top svg {
    width: 32px;
    height: 32px;
  }
}

.floating-consultation { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); z-index: 800; display: none; }
.floating-consultation.show { display: block; }
.floating-consultation-trigger { display: none; }
.floating-consultation-close { display: none; }
.floating-box { background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 24px; width: 280px; border: 1px solid #f0f0f0; position: relative; }
.floating-box h4 { font-size: 16px; font-weight: 900; margin-bottom: 16px; color: var(--text-main); }
.floating-box .consult-item { margin-bottom: 14px; }
.floating-box .consult-item:last-child { margin-bottom: 0; }
.floating-box .consult-label { font-size: 12px; color: var(--text-light); font-weight: 600; margin-bottom: 6px; display: block; }
.floating-box .consult-value { font-size: 16px; font-weight: 800; color: var(--primary); }
.floating-box .consult-value-phone { color: var(--accent-red); }
.floating-box .consult-value-meta { color: #555; font-size: 13px; font-weight: 600; }
.floating-box .consult-btn { width: 100%; padding: 12px; background: var(--primary); color: #fff; border-radius: 8px; font-weight: 700; font-size: 14px; margin-top: 16px; cursor: pointer; transition: all 0.3s ease; border: none; box-sizing: border-box; }
.floating-box .consult-btn:hover { background: var(--primary-dark); }
.floating-box a.consult-btn { display: block; text-align: center; text-decoration: none; line-height: 1.3; }
.floating-box .consult-btn-kakao { background: #FEE500; color: #191919; margin-top: 10px; }
.floating-box .consult-btn-kakao:hover { filter: brightness(0.96); background: #FEE500; }
/* 모바일/태블릿: 동그라미로 우측하단, 클릭 시 펼침, X로 접기 */
@media (max-width: 1024px) {
  .floating-consultation { top: auto; bottom: 100px; right: 20px; transform: none; }
  .floating-consultation-trigger { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(232,113,77,0.4); transition: transform 0.2s; }
  .floating-consultation-trigger:active { transform: scale(0.95); }
  .floating-consultation .floating-box { display: none; position: absolute; bottom: 100%; right: 0; margin-bottom: 12px; }
  .floating-consultation.expanded .floating-consultation-trigger { display: none; }
  .floating-consultation.expanded .floating-box { display: block; }
  .floating-consultation-close { display: block; position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border: none; background: none; font-size: 24px; line-height: 1; color: #999; cursor: pointer; padding: 0; }
  .floating-consultation-close:hover { color: #333; }
}
/* 구독문의 폼 (비상세 페이지 하단) */
.subscription-inquiry-form { font-size: 14px; display: flex; flex-direction: column; gap: 0; width: 100%; box-sizing: border-box; }
.subscription-inquiry-form .si-title { font-size: 16px; font-weight: 900; margin: 0 0 6px 0; color: var(--text-main); }
.subscription-inquiry-form .si-phone { display: inline-block; font-size: 18px; font-weight: 800; color: var(--accent-red); text-decoration: none; margin: 0 0 12px 0; }
.subscription-inquiry-form .si-phone:hover { text-decoration: underline; }
.subscription-inquiry-form .si-form { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.subscription-inquiry-form .si-field { margin: 0; }
.subscription-inquiry-form .si-field label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: var(--text-sub); }
.subscription-inquiry-form .si-field input { width: 100%; max-width: 100%; padding: 10px 12px; border: 1px solid var(--border-main); border-radius: 8px; font-size: 14px; box-sizing: border-box; }
.subscription-inquiry-form .si-agree { display: flex; align-items: center; gap: 6px; margin: 0; font-size: 12px; color: var(--text-sub); flex-wrap: wrap; line-height: 1; }
.subscription-inquiry-form .si-agree input { width: auto; flex-shrink: 0; vertical-align: middle; }
.subscription-inquiry-form .si-agree label { margin: 0; display: inline-flex; align-items: center; line-height: 1; cursor: pointer; }
.subscription-inquiry-form .si-privacy-origin { background: none; border: none; padding: 0; font-size: 12px; color: #999; cursor: pointer; text-decoration: underline; margin-left: 2px; display: inline-flex; align-items: center; line-height: 1; }
.subscription-inquiry-form .si-privacy-origin:hover { color: #666; }
.subscription-inquiry-form .si-submit { width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 800; cursor: pointer; box-sizing: border-box; }
.subscription-inquiry-form .si-submit:hover { background: var(--primary-dark); }
.bottom-bar-inquiry { transform: translateX(-50%); width: 92%; max-width: 960px; }
.bottom-bar-inquiry-inner { display: block !important; max-width: 100%; margin: 0 auto; padding: 20px 24px !important; box-sizing: border-box; position: relative; }

/* 모바일: 접힌 상태 = 빠른상담신청 바만 노출, 탭 시 펼침, 우측상단 X로 접기 */
.bottom-bar-inquiry-wrap { position: relative; }
.bottom-bar-inquiry-mobile-header { display: none; }
.bottom-bar-mobile-close { display: none !important; position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: none; background: none; font-size: 28px; line-height: 1; color: #333; cursor: pointer; z-index: 1001; padding: 0; border-radius: 50%; }
.bottom-bar-mobile-close:hover { color: #000; background: rgba(0,0,0,0.06); }
@media (max-width: 768px) {
  .bottom-bar-inquiry-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
  }
  /* 모바일 하단 바: 마스크 제거(호환성) + 그리드 3열 + 가운데 돌출 버튼 */
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav {
    display: block;
    position: relative;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    overflow: visible;
    cursor: default;
  }
  /* 상단 오목 노치: 좌·우 역방향 원호 (::before / ::after) */
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav::before,
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav::after {
    content: "";
    position: absolute;
    top: 0;
    width: 35px;
    height: 35px;
    background: #ffffff;
    pointer-events: none;
    z-index: 1;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav::before {
    left: calc(50% - 35px - 35px);
    border-bottom-right-radius: 100%;
    box-shadow: 1px 0 0 rgba(224, 224, 224, 0.9);
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav::after {
    right: calc(50% - 35px - 35px);
    border-bottom-left-radius: 100%;
    box-shadow: -1px 0 0 rgba(224, 224, 224, 0.9);
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-nav-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
    align-items: center;
    min-height: 66px;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    cursor: pointer;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-nav-left {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-cta-wrap {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-self: start;
    height: 60px;
    pointer-events: none;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-cta-wrap .bb-mobile-cta {
    pointer-events: auto;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 2px 2px;
    margin: 0;
    border: none;
    background: none;
    color: #222;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    min-width: 40px;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    color: #1a1a1a;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-nav-icon svg {
    width: 24px;
    height: 24px;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-nav-label {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    letter-spacing: -0.2px;
    line-height: 1;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-cta {
    position: relative;
    top: 0;
    left: auto;
    transform: translateY(-40%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    background: #ff6600;
    box-shadow: 0 4px 14px rgba(255, 102, 0, 0.35);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-cta-icon svg {
    width: 18px;
    height: 18px;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-cta-text {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -0.35px;
    line-height: 1.05;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-phone-block {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 0;
    text-align: right;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-phone-label {
    font-size: 11px;
    font-weight: 700;
    color: #777;
    margin-bottom: 3px;
    line-height: 1.2;
  }
  .bottom-bar-inquiry-mobile-header.mobile-bottom-nav .bb-mobile-phone {
    display: block;
    font-size: clamp(15px, 3.8vw, 18px);
    font-weight: 900;
    color: var(--accent-red);
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1.15;
    word-break: keep-all;
  }
  .bottom-bar-inquiry-wrap .bottom-fixed-bar.bottom-bar-inquiry { position: relative; left: 0; transform: none; width: 100%; max-width: 100%; border-radius: 0; bottom: auto; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .bottom-bar-inquiry-wrap.expanded .bottom-bar-inquiry-mobile-header { display: none; }
  .bottom-bar-inquiry-wrap.expanded .bottom-fixed-bar.bottom-bar-inquiry { max-height: 85vh; overflow-y: auto; }
  .bottom-bar-inquiry-wrap.expanded .bottom-bar-mobile-close { display: flex !important; position: absolute; top: 12px; right: 12px; align-items: center; justify-content: center; }
}
@media (min-width: 769px) {
  .bottom-bar-inquiry-mobile-header { display: none !important; }
  .bottom-bar-mobile-close { display: none !important; }
  .bottom-bar-inquiry-wrap.expanded .bottom-fixed-bar.bottom-bar-inquiry { max-height: none; }
}

/* PC: 구독문의 + 이름 + 연락처 한 줄 (줄바꿈 없이 가로 한 줄) */
@media (min-width: 769px) {
  .bottom-bar-inquiry-inner .subscription-inquiry-form { display: flex; flex-direction: row; align-items: center; flex-wrap: nowrap; gap: 16px; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-title { margin: 0; flex-shrink: 0; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-phone { margin: 0; flex-shrink: 0; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-privacy { margin: 0; flex-shrink: 0; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form { flex-direction: row; align-items: center; gap: 12px; margin: 0; flex: 1; min-width: 0; flex-wrap: nowrap; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-field { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin: 0; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-field label { margin-bottom: 0; flex-shrink: 0; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-field input { width: 120px; max-width: 140px; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-field-name input { width: 100px; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-field-phone input { width: 140px; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-agree { flex: 0 0 auto; margin: 0; white-space: nowrap; align-items: center; }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-submit { width: auto; flex: 0 0 auto; padding: 12px 24px; }
}

/* 개인정보 원문 레이어 */
.privacy-layer-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; min-height: 100vh; background: rgba(0,0,0,0.5); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
.privacy-layer-box { background: #fff; border-radius: 16px; max-width: 440px; width: 100%; max-height: 80vh; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); margin: auto; }
.privacy-layer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border-main); }
.privacy-layer-header h3 { font-size: 18px; font-weight: 800; margin: 0; color: var(--text-main); }
.privacy-layer-close { background: none; border: none; font-size: 28px; line-height: 1; color: #999; cursor: pointer; padding: 0; width: 36px; height: 36px; }
.privacy-layer-close:hover { color: #333; }
.privacy-layer-body { padding: 24px; overflow-y: auto; }
.privacy-layer-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin: 0; }
.privacy-layer-text p { margin: 0 0 0.9em; }
.privacy-layer-text p:last-child { margin-bottom: 0; }

/* 모바일 전용 전화 플로팅(tel 링크) — SK 주황(var(--primary)), 표시는 768px 이하 CSS에서 제어 */
.floating-phone {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 113, 77, 0.45);
  z-index: 950;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
}
.floating-phone.show { display: flex; }
.floating-phone:active { transform: scale(0.95); }
.floating-phone svg {
  display: block;
  flex-shrink: 0;
}

/* 모바일 전용: 카카오 채널 (전화·맨 위로 버튼과 겹치지 않게 중간 높이) */
.floating-kakao {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 174px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fee500;
  color: #191919;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  z-index: 805;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.floating-kakao:hover { filter: brightness(0.97); color: #191919; }
.floating-kakao:active { transform: scale(0.96); }
@media (max-width: 768px) {
  .floating-kakao { display: flex; }
}

/* 맨 위로 (전역) — PC 우측 하단, 모바일에서는 전화·카톡 동그라미 위로 배치 */
.scroll-to-top-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 850;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.scroll-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.scroll-to-top-btn:hover {
  background: #f7f7f7;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  color: var(--primary);
}
.scroll-to-top-btn:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .scroll-to-top-btn {
    right: 20px;
    bottom: calc(100px + 60px + 14px + 60px + 14px);
  }
}

/* Mobile Menu Submenu - 메뉴가 검은 화면(오버레이) 위에 표시 */
.mobile-nav { position: fixed; top: 118px; left: 0; width: 100%; background: #fff; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; border-bottom: 1px solid var(--border-main); box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: flex; flex-direction: column; }
.mobile-nav.active { max-height: 85vh; overflow-y: auto; }
.mobile-nav-header-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 6px 0 10px;
  background: rgba(26, 26, 26, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}
.mobile-nav-close svg { display: block; }
.mobile-nav a { display: block; padding: 16px 20px; font-size: 15px; font-weight: 700; color: var(--text-main); border-bottom: 1px solid #f5f5f5; }
.mobile-nav-promo { margin-top: auto; padding: 16px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--border-light); background: #f0f4f8; flex-shrink: 0; }
.mobile-nav-promo-item { width: 100%; height: 120px; background: #e8f0f5; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-decoration: none; color: inherit; border: none; flex-shrink: 0; position: relative; }
.mobile-nav-promo-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mobile-nav-promo-item span { font-size: 13px; font-weight: 800; color: #333; text-align: center; line-height: 1.4; padding: 12px; position: relative; z-index: 1; }
.mobile-nav-promo-item span small { display: block; font-size: 11px; font-weight: 600; color: #666; margin-top: 6px; }
@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
  .mobile-nav-overlay { display: none !important; }
}
.mobile-nav a:hover { background: #f9f9f9; color: var(--primary); }
.mobile-nav-submenu { display: none; background: #f9f9f9; padding: 0; }
.mobile-nav-submenu.show { display: block; }
.mobile-nav-submenu a { padding: 12px 20px 12px 40px; font-size: 13px; font-weight: 600; border-bottom: none; }
.mobile-nav-subgroup { padding: 10px 0; border-bottom: 1px solid #eceff5; }
.mobile-nav-subgroup:last-child { border-bottom: none; }
.mobile-nav-submenu .mobile-nav-subgroup-title {
  display: block;
  padding: 10px 20px 9px 26px;
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #111827 !important;
  border-bottom: none;
  background: #eef3ff;
  border-left: 4px solid var(--primary);
}
.mobile-nav-subgroup-children { display: block; }
.mobile-nav-submenu a.mobile-nav-subgroup-child {
  display: block;
  padding: 8px 20px 8px 48px;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  border-bottom: none;
}
.mobile-nav-submenu a.mobile-nav-subgroup-child::before {
  content: "·";
  display: inline-block;
  width: 14px;
  margin-left: -14px;
  color: #c2c8d3;
}
.mobile-nav-submenu .mobile-nav-subgroup-child:hover { color: var(--primary); background: #fff; }

@media (max-width: 768px) {
  .bottom-fixed-bar:not(.bottom-bar-inquiry) { width: 85%; bottom: 15px; }
  .bottom-bar-inner { flex-direction: column; gap: 12px; padding: 14px 24px; }
  .bottom-left { flex-direction: column; gap: 12px; width: 100%; }
  .bottom-btns { width: 100%; }
  .bottom-btns .btn { flex: 1; }
  /* 스크롤로 켜지는 우측 플로팅 레일 — 모바일 하단 고정 */
  .floating-consultation,
  .floating-consultation.show {
    display: none !important;
  }
  .floating-phone,
  .floating-phone.show {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .floating-consultation.show { display: block; }
  .floating-phone,
  .floating-phone.show {
    display: none !important;
  }
}

.btn { border-radius: 10px; font-weight: 800; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none; letter-spacing: -0.3px; }
.btn-primary { background: var(--primary); color: #fff; padding: 15px 42px; font-size: 16px; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-consult { background: #333; color: #fff; width: 165px; height: 52px; border-radius: 10px; font-weight: 800; }
.btn-consult:hover { background: #000; }
.btn-rental { background: var(--primary); color: #fff; width: 165px; height: 52px; border-radius: 10px; font-weight: 800; }
.btn-rental:hover { background: var(--primary-dark); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); z-index: 2000; display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-form { background: #fff; width: 90%; max-width: 520px; border-radius: 24px; overflow: hidden; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-header { padding: 30px; border-bottom: 1px solid var(--border-light); text-align: center; position: relative; }
.modal-header h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }
.modal-close-btn { position: absolute; top: 22px; right: 22px; font-size: 26px; color: #999; background: none; border: none; cursor: pointer; transition: color 0.2s; }
.modal-close-btn:hover { color: #333; }
.modal-body { padding: 35px; }
.form-item { margin-bottom: 24px; }
.form-item label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.form-item input, .form-item select, .form-item textarea { width: 100%; height: 52px; border: 1px solid var(--border-main); border-radius: 10px; padding: 0 16px; font-size: 14px; outline: none; font-family: inherit; transition: all 0.3s; }
.form-item textarea { height: 110px; padding: 16px; }
.form-item input:focus, .form-item select:focus, .form-item textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0, 169, 224, 0.1); }
.form-agree { font-size: 13px; color: var(--text-sub); display: flex; align-items: center; gap: 10px; margin-bottom: 35px; }
.form-agree input { width: auto; height: auto; }
.btn-submit { width: 100%; height: 62px; background: var(--primary); color: #fff; font-size: 18px; font-weight: 900; border-radius: 10px; border: none; cursor: pointer; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: -0.3px; }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

.filter-wrap { background: #fff; border: 1px solid var(--border-main); border-radius: 16px; padding: 12px 16px; margin-bottom: 14px; }
.filter-wrap-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 4px; margin-bottom: 0; border-bottom: 1px solid var(--border-light); }
.filter-wrap-title { font-size: 15px; font-weight: 800; color: var(--text-main); letter-spacing: -0.3px; }
.filter-wrap-title--mobile { font-size: 15px; font-weight: 800; color: var(--text-main); letter-spacing: -0.3px; }
.filter-wrap-title--desktop { display: inline; }
.filter-wrap-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 4px 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--text-main);
  -webkit-tap-highlight-color: transparent;
}
.filter-wrap-chevron {
  flex-shrink: 0;
  color: #666;
  transition: transform 0.25s ease;
}
.filter-wrap--catalog-mobile.is-collapsed .filter-wrap-chevron {
  transform: rotate(-90deg);
}
.filter-wrap-body {
  padding-top: 2px;
}
@media (min-width: 769px) {
  .filter-wrap--catalog-mobile.is-collapsed .filter-wrap-body {
    display: block !important;
  }
  .filter-wrap--catalog-mobile .filter-wrap-mobile-toggle {
    display: none !important;
  }
  .filter-wrap--catalog-mobile .filter-wrap-title--desktop {
    display: inline !important;
  }
}
@media (max-width: 768px) {
  .filter-wrap--catalog-mobile .filter-wrap-title--desktop {
    display: none !important;
  }
  .filter-wrap--catalog-mobile .filter-wrap-mobile-toggle {
    display: inline-flex;
  }
  .filter-wrap--catalog-mobile.is-collapsed .filter-wrap-body {
    display: none;
  }
}
.filter-reset-btn { padding: 8px 18px; font-size: 13px; font-weight: 700; color: var(--text-sub); background: #fff; border: 1px solid var(--border-main); border-radius: 20px; cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.filter-reset-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(232, 113, 77, 0.06); }
.filter-row { display: flex; border-bottom: 1px solid var(--border-light); padding: 6px 0; align-items: flex-start; }

/* 리스트 정렬/건수 바 */
.sub_sort { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-light); margin-bottom: 0; }
.sub_sort_count { list-style: none; margin: 0; padding: 0; font-size: 14px; color: var(--text-sub); }
.sub_sort_count .count-num { color: var(--primary); font-weight: 800; }
.list_sort { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.list_sort li { padding: 8px 14px; font-size: 13px; color: var(--text-sub); cursor: pointer; border-radius: 8px; transition: background 0.2s, color 0.2s; }
.list_sort li:hover { color: var(--text-main); background: #f5f5f5; }
.list_sort li.sort_on { color: var(--primary); font-weight: 700; background: rgba(255, 153, 0, 0.08); }
.list_sort .sort-arrow { margin-left: 2px; font-size: 10px; opacity: 0.9; }
.filter-row:last-child { border-bottom: none; }
.filter-label { width: 130px; font-size: 14px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; flex-shrink: 0; letter-spacing: -0.3px; }
.filter-options { display: flex; flex-wrap: wrap; gap: 6px 8px; flex: 1; }
.filter-opt { padding: 5px 12px; border: 1px solid var(--border-main); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--text-sub); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: #fff; cursor: pointer; }
.filter-opt:hover { border-color: var(--primary); color: var(--primary); }
.filter-opt.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.filter-options-check .filter-opt { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.filter-options-check .filter-opt input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.filter-reset-btn { text-decoration: none; color: inherit; display: inline-flex; align-items: center; }

/* 제품 목록 필터: 셀렉트 */
.filter-options-select { flex: 1; min-width: 0; align-items: center; }
.filter-select-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 280px;
}
.filter-select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0;
  padding: 10px 42px 10px 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.2px;
  color: var(--text-main);
  line-height: 1.35;
  background-color: #fafbfc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  border: 1px solid var(--border-main);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.filter-select:hover {
  border-color: #d0d0d0;
  background-color: #fff;
}
.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 113, 77, 0.15);
  background-color: #fff;
}
.filter-select option {
  font-weight: 500;
  padding: 8px;
}

.detail-top { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-bottom: 100px; }
.detail-gallery { position: relative; }
.main-thumb { width: 100%; height: 520px; background: #f9fafb; border-radius: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: #ccc; font-size: 14px; }
.sub-thumbs { display: flex; gap: 12px; }
.sub-thumb { width: 88px; height: 88px; background: #eee; border-radius: 12px; cursor: pointer; border: 2px solid transparent; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.sub-thumb:hover { border-color: var(--border-main); }
.sub-thumb.active { border-color: var(--primary); }

.detail-info-header { margin-bottom: 35px; }
.detail-tagline { font-size: 16px; color: var(--primary); font-weight: 800; margin-bottom: 12px; letter-spacing: 0.3px; }
.detail-title { font-size: 34px; font-weight: 900; margin-bottom: 18px; letter-spacing: -1px; }
.detail-hashtags { display: flex; gap: 12px; margin-bottom: 24px; }
.hashtag { font-size: 13px; color: var(--text-light); }
.expert-comment { background: linear-gradient(135deg, #f8fbfc 0%, #f0f6f9 100%); padding: 24px; border-radius: 14px; border-left: 4px solid var(--primary); font-size: 14px; color: var(--text-sub); line-height: 1.7; }

.option-select-box { margin-bottom: 30px; }
.option-title { font-size: 15px; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.3px; }
.option-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.option-btn { padding: 11px 22px; border: 1px solid var(--border-main); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text-sub); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: #fff; cursor: pointer; }
.option-btn:hover { border-color: var(--primary); color: var(--primary); }
.option-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.color-palette { display: flex; gap: 14px; }
.color-opt { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px #ddd; cursor: pointer; position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.color-opt:hover { box-shadow: 0 0 0 1px var(--primary); }
.color-opt.active { box-shadow: 0 0 0 3px var(--primary); }
.color-opt.active::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-weight: 900; text-shadow: 0 0 3px rgba(0,0,0,0.5); }

.rolling-banner-container { width: 100%; margin: 50px 0; }
.rolling-banner { width: 100%; height: 90px; background: linear-gradient(135deg, #333 0%, #555 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; overflow: hidden; animation: bannerScroll 12s linear infinite; font-size: 16px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 35px 0; }
.benefit-item { background: #f8fbfc; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #e8f0f5; }
.benefit-icon { font-size: 28px; margin-bottom: 10px; }
.benefit-text { font-size: 13px; font-weight: 700; color: var(--text-main); line-height: 1.5; }

.detail-tabs { display: flex; border-bottom: 1px solid var(--border-main); margin-top: 60px; position: sticky; top: 80px; background: #fff; z-index: 10; }
.tab-item { flex: 1; text-align: center; padding: 22px; font-size: 16px; font-weight: 700; color: var(--text-sub); cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); min-width: 0; }
.tab-item:hover { color: var(--text-main); }
.tab-item.active { color: var(--primary); border-bottom-color: var(--primary); }
.detail-content-inner { padding: 6px 0 40px; max-width: 1000px; margin: 0 auto; text-align: center; }
.detail-content-inner img {display:inline-block;}
.product-common-detail-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eceff6;
  text-align: center;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-common-detail-block img,
.product-common-detail-block video,
.product-common-detail-block iframe {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.product-common-detail-block table {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.detail-content-inner .product-common-detail-block table {
  width: auto;
}
.detail-content-inner--sm { padding: 8px 0 18px; }
.detail-section-title { margin-bottom: 24px; }
.detail-content-section .text-sub { color: var(--text-sub); }

/* Product detail FAQ (Q&A tab) */
.detail-content-inner--faq {
  padding: 8px 0 48px;
  max-width: 820px;
  text-align: left;
}
.product-faq__header {
  text-align: center;
  margin-bottom: 28px;
}
.product-faq__title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}
.product-faq__lead {
  margin: 0;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.5;
}
.product-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-faq__item {
  border: 1px solid #eceff6;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.product-faq__item.is-open {
  border-color: rgba(232, 113, 77, 0.35);
  box-shadow: 0 8px 24px rgba(232, 113, 77, 0.1);
}
.product-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text-main);
  transition: background 0.2s ease;
}
.product-faq__question:hover {
  background: var(--primary-light);
}
.product-faq__item.is-open .product-faq__question {
  background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
}
.product-faq__q-badge,
.product-faq__a-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.3px;
}
.product-faq__q-badge {
  background: var(--primary);
  color: #fff;
}
.product-faq__a-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  margin-top: 2px;
}
.product-faq__q-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.3px;
}
.product-faq__chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.product-faq__item.is-open .product-faq__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--primary);
}
.product-faq__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.product-faq__item.is-open .product-faq__answer {
  opacity: 1;
}
.product-faq__answer[hidden] {
  display: block;
}
.product-faq__answer-inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 20px 20px;
  border-top: 1px solid #f1f5f9;
  margin: 0 20px;
  padding-top: 16px;
  padding-left: 0;
  padding-right: 0;
}
.product-faq__a-text {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.product-faq__empty {
  text-align: center;
  padding: 48px 24px;
  border-radius: 16px;
  background: #f8fbfc;
  border: 1px dashed #dce4ec;
}
.product-faq__empty p {
  margin: 0;
  color: var(--text-sub);
  font-size: 15px;
}

/* Consultation complete (/consultation) */
.consult-complete {
  margin: 0;
  padding: 0;
  width: 100%;
}
.consult-complete__hero {
  padding: 56px 0 88px;
  background: linear-gradient(165deg, #fff8f5 0%, #fff 42%, #f8fbfc 100%);
  border-bottom: 1px solid var(--border-light);
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
}
.consult-complete__inner {
  width: 100%;
}
.consult-complete__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 40px 44px;
  border-radius: 24px;
  border: 1px solid rgba(232, 113, 77, 0.12);
  background: #fff;
  box-shadow: var(--shadow-deep);
}
.consult-complete__badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8fbfc 0%, #eef3f8 100%);
  color: var(--text-sub);
  border: 1px solid #e8eff6;
}
.consult-complete__badge--success {
  background: linear-gradient(145deg, var(--primary-light) 0%, #ffe8df 100%);
  color: var(--primary);
  border-color: rgba(232, 113, 77, 0.2);
  box-shadow: 0 8px 24px rgba(232, 113, 77, 0.15);
}
.consult-complete__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
.consult-complete__title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.6px;
  line-height: 1.35;
}
.consult-complete__desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-sub);
}
.consult-complete__br-sm { display: none; }
.consult-complete__steps {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  flex-wrap: wrap;
}
.consult-complete__steps li {
  flex: 1;
  min-width: 100px;
  max-width: 140px;
  padding: 14px 10px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid #eceff6;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}
.consult-complete__steps li span {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #e8ecf0;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 800;
  line-height: 26px;
}
.consult-complete__steps li.is-done {
  background: var(--primary-light);
  border-color: rgba(232, 113, 77, 0.2);
  color: var(--primary-dark);
}
.consult-complete__steps li.is-done span {
  background: var(--primary);
  color: #fff;
}
.consult-complete__steps li.is-active {
  background: #fff;
  border-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 16px rgba(232, 113, 77, 0.12);
}
.consult-complete__steps li.is-active span {
  background: var(--primary-light);
  color: var(--primary);
  border: 2px solid var(--primary);
  line-height: 22px;
}
.consult-complete__guide-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consult-complete__guide-list li {
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fbfc;
  border: 1px solid #e8f0f5;
}
.consult-complete__guide-list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}
.consult-complete__guide-list span {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.5;
}
.consult-complete__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.consult-complete__btn {
  min-width: 140px;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
}
.consult-complete__contact {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.consult-complete__contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.consult-complete__phone {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.consult-complete__phone:hover {
  color: var(--primary-dark);
}
.consult-complete__contact-hours {
  font-size: 13px;
  color: var(--text-light);
}

body.page-consult-complete main {
  padding-bottom: 0;
}
body.page-consult-complete .floating-kakao {
  bottom: 24px;
}

/* Business info disclosure (네이버 쇼핑 EP 상품페이지 사업자정보) */
.biz-info-block {
  width: 100%;
}
.biz-info-block__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  color: inherit;
  letter-spacing: -0.3px;
}
.biz-info-block__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.biz-info-block__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 16px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
}
.biz-info-block__row dt {
  margin: 0;
  font-weight: 700;
  color: inherit;
  opacity: 0.85;
}
.biz-info-block__row dd {
  margin: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.biz-info-block__row a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.biz-info-block--footer .biz-info-block__title {
  font-size: 14px;
  margin-bottom: 12px;
  color: #fff;
}
.biz-info-block--footer .biz-info-block__row {
  font-size: 12px;
  color: #bbb;
  grid-template-columns: 108px 1fr;
}
.biz-info-block--footer .biz-info-block__row dt {
  color: #999;
}
.biz-info-block--footer .biz-info-block__row a {
  color: #ddd;
}

.product-grid-mt { margin-top: 24px; }
.container-flash { padding-top: 20px; }
.success-msg { background: #e8f5e9; color: #2e7d32; padding: 12px 16px; border-radius: 8px; margin-bottom: 24px; }
.no-result-spaced { padding: 60px 20px; }
.no-result-spaced .btn-primary { margin-top: 20px; }
.no-result-spaced p { font-size: 16px; color: #999; }
.error-list { color: #c00; margin-bottom: 20px; }
.form-group-agree { margin-bottom: 20px; }
.form-group-agree label { display: flex; align-items: center; font-weight: 400; cursor: pointer; }
.form-group-agree input[type="checkbox"] { width: auto; margin-right: 8px; }
.form-hint { font-size: 12px; color: #999; margin-top: 8px; }

.product-actions { display: flex; gap: 14px; margin-top: 40px; justify-content: center; }
.btn { padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn-secondary { background: #f5f5f5; color: var(--text-main); border: 1px solid var(--border-main); }
.btn-secondary:hover { background: #eee; border-color: var(--text-light); }
.breadcrumbs { background: transparent; padding: 18px 0 10px; border-bottom: none; font-size: 13px; color: var(--text-light); margin-bottom: 24px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-light); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--primary); text-decoration: none; }
.breadcrumbs .sep { color: #ccc; font-size: 11px; }
.breadcrumbs span.current { color: var(--text-sub); font-weight: 600; }
.supp-breadcrumbs { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.supp-breadcrumbs a { color: var(--text-light); text-decoration: none; }
.supp-breadcrumbs a:hover { color: var(--primary); }
.supp-breadcrumbs span { margin: 0 6px; color: #ccc; }
.supp-product-top-info { padding: 30px 0 15px; border-bottom: 1.5px solid #333; margin-bottom: 25px; }
.supp-product-model-no { font-size: 12px; color: #999; margin-bottom: 8px; font-weight: 500; }
.supp-product-main-title { font-size: clamp(15px, 0.65rem + 1.35vw, 28px); font-weight: 900; color: #1a1a1a; margin-bottom: 6px; letter-spacing: -0.5px; line-height: 1.25; word-break: keep-all; overflow-wrap: anywhere; }
.supp-detail-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; margin-top: 30px; align-items: start; }
.supp-main-img-container { position: relative; }
.supp-main-thumb { width: 100%; aspect-ratio: 1 / 1; height: auto; box-sizing: border-box; background: #e8e8e8; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #eee; }
.supp-main-thumb img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain;  box-sizing: border-box; }
.supp-sub-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 16px; }
.supp-sub-thumb { width: 100%; aspect-ratio: 1/1; border: 1px solid #eee; cursor: pointer; background: #e8e8e8; overflow: hidden; border-radius: 8px; }
.supp-sub-thumb img { width: 100%; height: 100%; object-fit: cover; }
.supp-sub-thumb.active { border: 2px solid var(--primary); }
.supp-detail-info { display: flex; flex-direction: column; gap: 0; padding: 8px 0 12px; }
.supp-price-summary { border-top: 2px solid #333; padding-top: 14px; margin-top: 4px; }
.supp-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; }
.supp-price-summary .supp-summary-row + .supp-summary-row { margin-top: 12px; }
.supp-price-summary .supp-price-notice { margin-top: 8px; }
.supp-summary-label { font-size: 14px; font-weight: 700; color: #333; }
.supp-summary-val { font-size: 14px; color: #555; }
.supp-action-buttons { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; width: 100%; }
.supp-action-buttons .supp-btn-kakao,
.supp-action-buttons .supp-btn-reserve,
.supp-action-buttons #btnCreditCardPay { flex: 1 1 0; min-width: 0; }
.supp-btn-reserve { height: 56px; background: var(--primary); color: #fff; font-size: 16px; font-weight: 800; border: none; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.supp-btn-reserve:hover { background: var(--primary-dark); }
.detail-content-section { padding: 16px 0 72px; border-bottom: 1px solid var(--border-light); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; padding: 8px; align-items: center; justify-content: center; color: var(--text-main); }
.menu-toggle-icon { width: 24px; height: 24px; transition: transform 0.3s ease; }
.menu-toggle.active .menu-toggle-icon { transform: rotate(90deg); }

/* 모바일 전용: 헤더 검색 아이콘 + 하단 검색 패널 (PC에서는 숨김) */
.header-search-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  position: relative;
}
.header-search-mobile-toggle__icon { display: block; }
.header-search-mobile-toggle__icon--close { display: none; }
.header-search-mobile-toggle.is-open .header-search-mobile-toggle__icon--open { display: none; }
.header-search-mobile-toggle.is-open .header-search-mobile-toggle__icon--close { display: block; }

.header-mobile-cat-strip {
  display: none;
}
.header-mobile-cat-strip-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 6px 16px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  align-items: center;
}
.header-mobile-cat-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-main);
  background: transparent;
  border: none;
  text-decoration: none;
}
.header-mobile-cat-link:hover { color: var(--primary); background: transparent; }

.header-mobile-search-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 118px;
  z-index: 1001;
  background: #fff;
  border-bottom: 1px solid var(--border-main);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}
.header-mobile-search-panel.is-open {
  max-height: 120px;
  visibility: visible;
}
.header-mobile-search-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 20px 16px;
}
.header-search--mobile-drawer {
  margin: 0;
  width: 100%;
  max-width: none;
  height: 44px;
}
.header-search--mobile-drawer .search-input {
  width: 100%;
  flex: 1;
  min-width: 0;
}
@media (min-width: 769px) {
  .header-mobile-search-panel { display: none !important; }
  .header-search-mobile-toggle { display: none !important; }
}

.mobile-nav { z-index: 999; }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 998; display: none; }
.mobile-nav-overlay.active { display: block; }

/* Detail Page Styles */
.detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.detail-rating .stars { font-size: 14px; color: #ffc107; }
.detail-rating .review-count { font-size: 13px; color: var(--text-light); }

.detail-price-section { background: #f8fbfc; padding: 24px; border-radius: 12px; margin-bottom: 30px; border: 1px solid #e8f0f5; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.price-row:last-child { margin-bottom: 0; }
.price-row .price-label { font-size: 14px; color: var(--text-sub); font-weight: 600; }
.price-row .price-value { font-size: 18px; font-weight: 900; color: var(--text-main); }
.price-row.highlight .price-value { color: var(--primary); font-size: 24px; }

.detail-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 30px; }
.option-group { display: flex; flex-direction: column; }
.option-group label { font-size: 13px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.option-group select { padding: 12px; border: 1px solid var(--border-main); border-radius: 8px; font-size: 14px; color: var(--text-sub); background: #fff; cursor: pointer; }

.detail-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }

.detail-options-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.option-buttons-group { display: flex; flex-direction: column; }
.option-buttons-group label { font-size: 13px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; letter-spacing: -0.3px; }
.option-buttons { display: flex; gap: 10px; }
.option-btn { padding: 11px 18px; border: 1.5px solid var(--border-main); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-sub); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: #fff; cursor: pointer; }
.option-btn:hover { border-color: var(--primary); color: var(--primary); }
.option-btn.active { border-color: var(--primary); color: #fff; background: var(--primary); }

.detail-info-box { background: #fff5f5; padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); }
.detail-info-box h4 { font-size: 14px; font-weight: 800; margin-bottom: 16px; color: var(--text-main); }
.info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 16px; color: var(--primary); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.info-item span:last-child { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

@media (max-width: 1200px) {
  .container { padding: 0 30px; }
  .header-inner { padding: 0 30px; }
  .mega-menu-inner { padding: 32px 28px; grid-template-columns: minmax(0, 1fr) minmax(188px, 220px); gap: 28px 32px; }
  .mega-menu-links { grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 22px 28px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  /* 모바일: 햄버거 | 로고(화면 중앙) | 검색아이콘 — 인라인 검색창은 패널로 이동 */
  .header-inner {
    padding: 0 16px;
    height: 68px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 0;
    align-items: center;
    position: relative;
  }
  .header-inner > nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
  }
  .logo {
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    margin: 0;
    width: auto;
    max-width: min(260px, calc(100vw - 120px));
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  .logo a {
    justify-content: center;
  }
  .logo-img { width: auto; height: 42px; max-height: 42px; max-width: min(190px, calc(100vw - 120px)); }
  .gnb { display: none; }
  .header-contact { display: none; }
  .header-inner > .header-search {
    display: none !important;
  }
  .header-search-mobile-toggle {
    display: flex !important;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    z-index: 2;
  }
  .site-header {
    border-bottom: none;
    box-shadow: none;
  }
  .header-mobile-cat-strip {
    display: block;
    border: none;
    background: transparent;
    border-bottom: none;
  }
  .header-mobile-cat-strip-inner {
    padding: 9px 16px 11px;
    gap: 10px;
  }
  .header-mobile-cat-link {
    font-size: 14px;
    padding: 8px 14px;
  }
  .header-mobile-search-panel {
    display: block;
    border-bottom: none;
    box-shadow: none;
  }

.main-slider {
  height: 126vw;
  max-height: 900px;
  min-height: 420px;
  margin-bottom: 5px;
}

.main-slider .slide-bg,
.main-slider .slide-bg picture {
  width: 100%;
  height: 100%;
  display: block;
}

.main-slider .slide-bg img,
.main-slider .slide-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
  .slide-content { grid-template-columns: 1fr; text-align: center; padding: 0 20px; align-items: center; justify-items: center; }
  .main-slider .slide-content-banner { padding: 50px 16px 70px !important; }
  .main-slider .slide-content-banner .slide-text h2 { font-size: 20px !important; line-height: 1.3; margin-bottom: 10px !important; letter-spacing: -0.5px; }
  .main-slider .slide-content-banner .slide-text p { font-size: 12px !important; margin-bottom: 16px !important; line-height: 1.5; }
  .slide-text { padding: 0 10px; }
  .slide-text h2 { font-size: 26px; line-height: 1.3; margin-bottom: 14px; letter-spacing: -1px; }
  .slide-text p { font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
  .slide-img { display: none; }
  .main-slider .slider-indicators { bottom: 14px; gap: 8px; padding: 8px 12px; max-width: calc(100% - 24px); flex-wrap: wrap; }
  .main-slider .slider-indicators .indicator-item { width: 8px; height: 8px; }
  .main-slider .slider-indicators .indicator-item.active { width: 22px; border-radius: 4px; }
  .home-quick-menu-wrap { padding: 16px 0 8px; margin-top: 0; }
  .home-quick-menu__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 10px;
    padding: 2px 4px 14px;
    margin: 0 -8px;
  }
  .home-quick-menu__item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 88px;
  }
  .home-quick-menu__icon-wrap { width: 76px; height: 76px; }
  .home-quick-menu__link { font-size: 14px; gap: 8px; line-height: 1.3; }
  .home-quick-menu__placeholder { width: 30px; height: 30px; }
  .home-category-section .section-header {
    margin-bottom: 24px;
  }
  .home-category-section .section-header h3 {
    font-size: 24px;
  }
  .home-category-section .home-cat-tabs {
    margin: 0 0 20px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: 6px;
  }
  .home-cat-tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12px;
  }
  .card-img-wrap { padding-top: 86%; max-height: 198px; min-height: 142px; }
  .product-card--db .card-img-wrap--catalog {
    padding-top: 0;
    aspect-ratio: 1 / 1;
    max-height: none;
    min-height: 0;
    margin: 10px 10px 0;
    border-radius: 14px;
  }
  .product-card--db .card-color-row { padding: 5px 12px 0; }
  .product-card--db .card-body--catalog { padding: 5px 12px 14px; }
  .product-card--db .card-product-title { font-size: 15px; margin-bottom: 10px; }
  .product-card--db .card-price-promo { font-size: 17px; }
  .product-card--db .card-price-card-val { font-size: 15px; }
  .card-img img { object-fit: contain; width: auto; height: auto; max-width: 100%; max-height: 100%; background: transparent; }
  .card-icons { right: 8px; bottom: 8px; gap: 6px; }
  .icon-tag { padding: 3px 8px; font-size: 0.62rem; }
  .review-item { width: 280px; min-width: 280px; flex-shrink: 0; padding: 20px; }
  .review-slider { min-height: 180px; padding: 16px 0; }
  .review-section { padding: 50px 0; }
  .section-padding { padding: 30px 0; }
  .section-header h2,
  .section-header h3 { font-size: 28px; }
  .product-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
  .card-body { padding: 10px; }
  .card-name { font-size: 15px; height: 45px; }
  .promo-grid { grid-template-columns: 1fr; }
  .bottom-bar-inner { padding: 12px 20px; flex-direction: column; gap: 15px; }
  .bottom-left { width: 100%; flex-direction: column; gap: 15px; }
  .bottom-btns { width: 100%; }
  .btn-consult, .btn-rental { flex: 1; height: 45px; font-size: 14px; }
  .partner-inner { padding: 0 20px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-inner { padding: 0 20px; grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .footer-inner--compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
  }
  .footer-cert-slot {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  .footer-cert-qr {
    width: 100%;
    max-width: min(560px, 100%);
    height: auto;
    aspect-ratio: 900 / 350;
    object-position: left center;
  }
  .footer-line {
    font-size: 12px;
    line-height: 1.6;
  }
  .footer-line--cs {
    font-size: 13px;
  }
  .footer-nav-columns { display: none; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { padding: 0 20px; flex-direction: column; text-align: center; gap: 10px; }
  .detail-top { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .detail-tabs { margin-top: 40px; top: 118px; }
  .tab-item { padding: 12px 6px; font-size: 13px; }
  .detail-content-section { padding: 12px 0 40px; }
  .detail-content-inner { padding: 6px 0 24px; }
  .detail-content-inner--sm { padding: 6px 0 14px; }
  .detail-content-inner--faq { padding: 4px 0 32px; }
  .product-faq__title { font-size: 22px; }
  .product-faq__lead { font-size: 14px; }
  .product-faq__question { padding: 16px 14px; gap: 10px; }
  .product-faq__q-text { font-size: 14px; }
  .product-faq__q-badge,
  .product-faq__a-badge { width: 28px; height: 28px; font-size: 12px; border-radius: 8px; }
  .product-faq__answer-inner { margin: 0 14px; padding-bottom: 16px; }
  .product-faq__a-text { font-size: 14px; line-height: 1.65; }
  .consult-complete { padding: 0; }
  .consult-complete__hero { padding: 36px 0 64px; min-height: auto; }
  .consult-complete__card { padding: 36px 22px 32px; border-radius: 20px; }
  .consult-complete__title { font-size: 22px; }
  .consult-complete__desc { font-size: 15px; }
  .consult-complete__br-sm { display: inline; }
  .consult-complete__badge { width: 68px; height: 68px; }
  .consult-complete__phone { font-size: 22px; }
  .consult-complete__steps li { min-width: 88px; font-size: 11px; }
  .consult-complete__btn { min-width: 120px; width: 100%; max-width: 280px; }
  .consult-complete__actions { flex-direction: column; align-items: center; }
  .product-common-detail-block { margin-bottom: 20px; padding-bottom: 16px; }
  .detail-content-inner .product-common-detail-block table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .detail-section-title { margin-bottom: 18px; }
  .product-grid-mt { margin-top: 16px; }
  .container-flash { padding-top: 12px; }
  .success-msg { padding: 10px 14px; margin-bottom: 18px; }
  .no-result-spaced { padding: 40px 16px; }
  .no-result-spaced .btn-primary { margin-top: 16px; }
  .error-list { margin-bottom: 16px; }
  .form-group-agree { margin-bottom: 16px; }
  .form-hint { margin-top: 6px; }
  .main-thumb { height: 350px; }
  .detail-title { font-size: 24px; }
  .filter-wrap { padding: 20px; }
  .filter-row { flex-direction: column; padding: 12px 0; }
  .filter-label { width: 100%; margin-bottom: 10px; }
  .filter-select-wrap { max-width: none; }
  .sub_sort { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .list_sort { width: 100%; justify-content: flex-start; }
  .list_sort li { padding: 6px 10px; font-size: 12px; }
  .modal-form { width: 95%; }
  .benefit-grid { grid-template-columns: repeat(1, 1fr); }
  .detail-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .product-grid { grid-template-columns: repeat(1, 1fr); gap: 8px; }
  .card-img-wrap { padding-top: 90%; max-height: 184px; min-height: 128px; }
  .card-img img { max-width: 100%; max-height: 100%; }
  .review-track { animation: scroll-mobile 50s linear infinite; }
  .detail-tabs { margin-top: 32px; top: 118px; }
  .tab-item { padding: 10px 4px; font-size: 12px; }
  .detail-content-inner { padding: 4px 0 20px; }
  .detail-content-inner--sm { padding: 4px 0 12px; }
  .product-common-detail-block { margin-bottom: 16px; padding-bottom: 12px; }
  .detail-section-title { margin-bottom: 16px; }
  .supp-final-price { font-size: 20px; }
  .supp-final-unit { font-size: 12px; }
  .supp-action-buttons { padding: 0 4px; }
  .supp-btn-reserve { height: 48px; padding: 0 12px; font-size: 14px; }
  .supp-btn-kakao { height: 48px; min-height: 48px; padding: 0 12px; font-size: 14px; border-radius: 8px; }
  .slide-text h2 { font-size: 24px; }
  .section-header h2,
  .section-header h3 { font-size: 24px; }
  .home-category-section .section-header h3 { font-size: 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .card-side-badge {
      width: 40px;
      height: 40px;
      font-size: 9px;
    }
  .product-card--db .card-side-badge:not(.card-side-badge-recommended) {
    width: auto;
    min-width: 40px;
    max-width: 72px;
    height: auto;
    min-height: 40px;
    padding: 4px 5px;
  }
  .product-card--db .card-side-badge-recommended {
    min-width: 40px;
    min-height: 40px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  /* 모바일 리스트 페이지에서는 썸네일의 '추천' 배지 숨김 */
  .list-page .product-card .card-badges,
  .search-result-section .product-card .card-badges {
    display: none;
  }
}

/* Features and Colors Section */
.detail-features-colors { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.features-section, .colors-section { display: flex; flex-direction: column; }
.features-section label, .colors-section label { font-size: 13px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; letter-spacing: -0.3px; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.feature-tag { padding: 8px 14px; background: #f0f0f0; border: 1px solid #ddd; border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--text-sub); transition: all 0.3s ease; cursor: pointer; }
.feature-tag:hover { border-color: var(--primary); }
.feature-tag[data-tag='온수'] { background: #FFE5CC; color: #D97706; border-color: #FFD699; }
.feature-tag[data-tag='냉수'] { background: #CCEEFF; color: #0066CC; border-color: #99DDFF; }
.feature-tag[data-tag='정수'] { background: #E8F5E9; color: #2E7D32; border-color: #C8E6C9; }
.feature-tag[data-tag='얼음'] { background: #F0F4FF; color: #3F51B5; border-color: #E0E7FF; }
.color-palette { display: flex; gap: 12px; flex-wrap: wrap; }
.color-opt { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px #ddd; cursor: pointer; position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.color-opt:hover { box-shadow: 0 0 0 2px var(--primary); }
.color-opt.active { box-shadow: 0 0 0 3px var(--primary); }
.color-opt.active::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-weight: 900; text-shadow: 0 0 3px rgba(0,0,0,0.5); font-size: 14px; }

/* Rolling Banner Section */
.rolling-banner-section { width: 100%; margin: 60px 0; padding: 0 40px; }
.rolling-banner-container { width: 100%; max-width: 1000px; margin: 0 auto; position: relative; }
.banner-slider { position: relative; width: 100%; overflow: hidden; border-radius: 16px; }
.banner-slide { display: none; width: 100%; animation: slideIn 0.5s ease-in-out; }
.banner-slide.active { display: block; }
.rolling-banner { width: 100%; height: 80px; background: linear-gradient(135deg, #E8714D 0%, #D94A1F 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; letter-spacing: -0.3px; padding: 0 30px; box-shadow: 0 4px 16px rgba(232, 113, 77, 0.2); }
.rolling-banner-link { text-decoration: none; }
.banner-indicators { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.banner-indicator { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all 0.3s ease; }
.banner-indicator.active { background: var(--primary); width: 28px; border-radius: 5px; }

@keyframes slideIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
  .detail-features-colors { grid-template-columns: 1fr; gap: 20px; }
  .rolling-banner-section { padding: 0 20px; }
  .rolling-banner { height: 70px; font-size: 15px; }
}

.selected-color-name { font-size: 12px; color: #999; margin-top: 10px; font-weight: 500; letter-spacing: -0.2px; display: none; }

/* ==========================================================================
   NEW DETAIL PAGE SUPPLEMENTARY STYLES (v29)
   ========================================================================== */

.supp-product-top-info { padding: 10px 0 15px; border-bottom: 1.5px solid #333; margin-bottom: 25px; position: relative; width: 100%; }
.supp-product-head-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px 20px; width: 100%; }
.supp-product-head-main { flex: 1; min-width: 0; }
.supp-product-model-no { font-size: 12px; color: #999; margin-bottom: 8px; font-weight: 500; }
.supp-product-main-title { font-size: clamp(15px, 0.65rem + 1.35vw, 28px); font-weight: 900; color: #1a1a1a; margin-bottom: 6px; letter-spacing: -0.5px; line-height: 1.25; word-break: keep-all; overflow-wrap: anywhere; }
.supp-product-sub-desc { font-size: 20px; font-weight: 500; color: #555; margin-bottom: 15px; line-height: 1.3; }
.supp-product-benefit-tags { display: flex; align-items: center; gap: 8px; margin-bottom: 0; flex-wrap: wrap; }
.supp-benefit-tag-main { background: #555; color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.supp-benefit-tag-sub { font-size: 13px; color: #666; font-weight: 700; }
.supp-product-utility-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.supp-utility-tag { border: 1px solid #CCEEFF; color: #0066CC; background: #f0faff; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 600; }

.supp-product-actions-top { position: static; flex-shrink: 0; display: flex; gap: 20px; align-items: center; align-self: flex-start; padding-top: 2px; }
.supp-action-item { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; }
.supp-action-item span { font-size: 11px; color: #333; font-weight: 700; }
.supp-wish-btn,
.supp-share-btn { background: none; border: none; font: inherit; padding: 0; margin: 0; color: inherit; text-align: center; }
.supp-wish-btn:focus-visible,
.supp-share-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.supp-wish-btn .wish-icon-wrap { position: relative; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.supp-wish-btn .wish-img { display: block; }
.supp-wish-btn .wish-img-filled { display: none; }
.supp-wish-btn.is-wishlisted .wish-img-outline { display: none; }
.supp-wish-btn.is-wishlisted .wish-img-filled { display: block; }

.product-share-modal { max-width: 400px; width: 100%; }
.product-share-lead { font-size: 15px; font-weight: 700; color: #333; margin: 0 0 10px; line-height: 1.4; }
.product-share-url-line { margin: 0 0 20px; padding: 10px 12px; background: #f5f6f8; border-radius: 8px; border: 1px solid #e8eaef; word-break: break-all; }
.product-share-url-text { font-size: 12px; color: #555; line-height: 1.5; }
.product-share-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-share-action-btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 0 12px; border-radius: 8px; border: 1px solid #ddd; background: #fff;
  font-size: 14px; font-weight: 700; color: #333; text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.product-share-action-btn:hover { border-color: var(--primary); color: var(--primary); background: #fffaf8; }
.product-share-native { display: none; }

@media (max-width: 480px) {
  .product-share-actions { grid-template-columns: 1fr; }
  .supp-main-thumb img { padding:0rem; }
}
.supp-product-rating-top { position: absolute; bottom: 15px; right: 0; display: flex; align-items: center; gap: 3px; }
.supp-rating-star { color: #ff6b00; font-size: 16px; }
.supp-rating-score { font-size: 14px; font-weight: 800; color: #333; }
.supp-rating-count { font-size: 13px; color: #999; }

.supp-detail-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0px; margin-top: 30px; align-items: start; }

.supp-detail-gallery { width: 100%; }
.supp-main-img-container { position: relative; display: block; }
.supp-side-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 10; }
.supp-side-badge { width: auto; min-width: 52px; max-width: 92px; min-height: 52px; height: auto; padding: 6px 8px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 12px; font-weight: 800; line-height: 1.3; box-shadow: 0 2px 8px rgba(0,0,0,0.15); word-break: keep-all; }
.supp-side-badge.red { background: #E60012; color: #fff; }
.supp-side-badge.green-outline { background: #fff; border: 2px solid #2E7D32; color: #2E7D32; }
/* 큰 썸네일: 항상 정사각형(가로 = 세로). PC는 갤러리 폭 최대 500px → 약 500×500 */
.supp-main-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.supp-main-thumb img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .supp-detail-gallery {
    max-width: 500px;
  }
  .supp-main-thumb {
    max-width: 500px;
  }
}
.supp-sub-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 20px; }
.supp-sub-thumb { width: 100%; aspect-ratio: 1/1; border: 1px solid #eee; cursor: pointer; background: #f9f9f9; overflow: hidden; }
.supp-sub-thumb img { width: 100%; height: 100%; object-fit: cover; }
.supp-sub-thumb.active { border: 2px solid #E8714D; }

.supp-detail-info { display: flex; flex-direction: column; gap: 0; padding: 8px 0 12px; }
.supp-info-row { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.supp-info-label { width: 120px; font-size: 14px; font-weight: 700; color: #333; flex-shrink: 0; }
.supp-info-content { flex: 1; }
.supp-btn-group { display: flex; width: 100%; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; }
.supp-btn-opt { flex: 1; height: 48px; background: #fff; border: none; border-right: 1px solid #ddd; font-size: 15px; color: #333; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.supp-btn-opt:last-child { border-right: none; }
.supp-btn-opt.active {
  color: #E8714D;
  font-weight: 800;
  border: 1.5px solid #E8714D;
  z-index: 1;
  background-color: #FFF0EB;
}
.supp-btn-opt.is-disabled { color: #bbb; background: #f5f5f5; cursor: not-allowed; }
.supp-opt-management.is-hidden-removed { display: none !important; }
.supp-info-row--management.is-hidden-removed { display: none !important; }
.supp-info-row--visit-cycle.is-hidden-removed { display: none !important; }
.supp-vc-group.supp-vc-solo .supp-opt-visit-cycle,
.supp-vc-group.supp-obl-solo .supp-opt-visit-cycle { flex: 1 1 100%; min-width: 0; }
.supp-mgmt-group.supp-mgmt-solo .supp-opt-management:not(.is-hidden-removed) { flex: 1 1 100%; min-width: 0; }
.supp-mgmt-group.supp-mgmt-focused-only .supp-opt-management { flex: 1 1 100%; min-width: 0; }
.supp-obl-group.supp-obl-solo .supp-opt-obligation { flex: 1 1 100%; min-width: 0; }

.supp-func-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.supp-func-tag { padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; border: 1px solid #eee; background: #f9f9f9; color: #666; }
.supp-func-tag.tag-hot { background: #FFE5CC; color: #D97706; border-color: #FFD699; }
.supp-func-tag.tag-cold { background: #CCEEFF; color: #0066CC; border-color: #99DDFF; }
.supp-func-tag.tag-purify { background: #E8F5E9; color: #2E7D32; border-color: #C8E6C9; }
.supp-func-tag.tag-ice { background: #F0F4FF; color: #3F51B5; border-color: #E0E7FF; }

.supp-color-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.supp-color-selection { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.supp-color-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #eee;
  cursor: pointer;
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  flex-shrink: 0;
}
.supp-color-circle:focus-visible {
  outline: 2px solid #E8714D;
  outline-offset: 3px;
}
.supp-color-circle.active { border: 1.5px solid #333; }
.supp-color-circle.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid #333;
  border-radius: 50%;
  pointer-events: none;
}
/* 선택 색상명 — 칩 아래 텍스트만 (SK매직 주황·레드 중간 톤) */
.supp-color-name-line {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #E65A38;
}
.supp-color-name-line:empty { display: none; }

.supp-price-summary { border-top: 2px solid #333; padding-top: 14px; margin-top: 4px; }
.supp-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; }
.supp-price-summary .supp-summary-row + .supp-summary-row { margin-top: 12px; }
.supp-price-summary .supp-price-notice { margin-top: 8px; }
.supp-summary-label { font-size: 14px; font-weight: 700; color: #333; }
.supp-summary-val {
  font-size: 18px;
  color: #999;
  text-decoration: none;
}

.supp-summary-val:not(.highlight) {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.supp-summary-val:not(.highlight)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 1px;
  background: #999;
  pointer-events: none;
}
.supp-summary-val.highlight { font-size: 24px; color: #333; font-weight: 900; text-decoration: none; }
.supp-summary-val.highlight span { font-size: 15px; font-weight: 700; margin-left: 2px; }
.supp-price-notice { text-align: right; color: #E60012; font-size: 12px; font-weight: 700; margin-bottom: 4px; margin-top: 8px; }
.supp-price-desc { font-size: 12px; color: #777; line-height: 1.5; margin-bottom: 8px; }

/* ===== 제휴카드 혜택 박스 ===== */
.supp-card-benefit-box { border: 1px solid var(--border-main); border-radius: 10px; padding: 12px; background: #fafafa; margin-bottom: 8px; }
.supp-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.supp-card-icon { width: 36px; height: 36px; background: #fff5f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.supp-card-title-wrap { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.supp-card-title { font-size: 14px; font-weight: 700; color: var(--text-main); }
.supp-card-subtitle { font-size: 11px; color: var(--text-sub); }
.supp-card-more { font-size: 11px; color: var(--primary); font-weight: 600; cursor: pointer; white-space: nowrap; text-decoration: underline; flex-shrink: 0; margin-left: auto; }

/* 커스텀 셀렉트 박스 */
.supp-card-select-wrap { position: relative; z-index: 10; }
.supp-card-select-box { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border: 1px solid var(--border-main); border-radius: 8px; background: #fff; cursor: pointer; transition: border-color 0.2s; gap: 8px; }
.supp-card-select-box:hover { border-color: var(--primary); }
.supp-card-select-text { font-size: 13px; color: #555; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.supp-card-select-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.supp-card-discount-hint { font-size: 11px; color: var(--primary); font-weight: 600; white-space: nowrap; }
.supp-card-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.supp-card-chevron.open { transform: rotate(180deg); }
.supp-card-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1px solid var(--border-main); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); overflow: hidden; z-index: 100; }
.supp-card-dropdown.open { display: block; }
.supp-card-option { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; cursor: pointer; transition: background 0.15s; border: none; border-bottom: 1px solid var(--border-light); border-radius: 0; background: transparent; width: 100%; text-align: left; font: inherit; color: inherit; gap: 8px; box-sizing: border-box; }
.supp-card-option:last-child { border-bottom: none; }
.supp-card-option:hover { background: var(--primary-light); }
.supp-card-option.selected { background: var(--primary-light); }
.card-opt-name { font-size: 13px; color: var(--text-main); flex: 1; }
.card-opt-discount { font-size: 12px; color: var(--primary); font-weight: 700; white-space: nowrap; flex-shrink: 0; }

/* ===== 최종 가격 섹션 ===== */
.supp-final-price-section { border-top: 2px solid var(--text-main); padding-top: 12px; margin-top: 10px; margin-bottom: 4px; }
.supp-final-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.supp-final-label { font-size: 14px; font-weight: 700; color: var(--text-main); }
.supp-final-help { width: 16px; height: 16px; background: #ddd; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: #666; cursor: pointer; font-weight: 700; }
.supp-final-amount-wrap { text-align: right; margin-bottom: 8px; }
.supp-final-price { font-size: 32px; font-weight: 900; color: var(--primary); letter-spacing: -1px; line-height: 1.1; }
.supp-final-unit { font-size: 16px; font-weight: 700; color: var(--primary); margin-left: 2px; }
/* 제품상세 강조가: 리스트처럼 월/원(단위)은 작은 회색, 숫자는 크게 + 색상 강조 */
.supp-summary-val.highlight .supp-unit { color: #4d4c4c; font-weight: 600; }
.supp-summary-val.highlight .num { font-size: 1.6em; font-weight: 900; color: #222; letter-spacing: -0.5px; }
.supp-final-price .num { font-size: 1.18em; font-weight: 900; color: #dc4c45; letter-spacing: -0.5px; }
.supp-final-price .supp-final-unit { color: #999; font-weight: 700; }
/* 렌탈료(취소선 원래가): 월/원 단위는 작게 분리, 금액은 검정·크게 */
.supp-summary-val .supp-unit { font-size: 0.9em; font-weight: 600; }
.supp-summary-val .num { color: #999; font-size: 1.2em; font-weight: 700; }
.supp-final-notice { font-size: 11px; color: var(--text-light); text-align: right; }

.supp-action-buttons { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; width: 100%; }
.supp-action-buttons .supp-btn-kakao,
.supp-action-buttons .supp-btn-reserve,
.supp-action-buttons #btnCreditCardPay { flex: 1 1 0; min-width: 0; }
.supp-btn-direct { height: 60px; background: #E8714D; color: #fff; font-size: 16px; font-weight: 800; border-radius: 4px; padding: 0 28px; }
.supp-btn-reserve { height: 56px; min-height: 56px; background: var(--primary); color: #fff; font-size: 16px; font-weight: 800; border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; transition: background 0.2s; }
.supp-btn-reserve:hover { background: var(--primary-dark); }
.supp-btn-kakao { height: 56px; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; background: #FEE500; color: #191919; font-size: 16px; font-weight: 800; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; transition: filter 0.2s, background 0.2s; box-sizing: border-box; }
.supp-btn-kakao:hover { filter: brightness(0.96); color: #191919; }

/* PC 제품상세 오른쪽 패널 — 100% 화면에서 카톡상담·렌탈신청까지 한눈에 */
@media (min-width: 1025px) {
  .supp-detail-info {
    gap: 0;
    padding: 0px 12px 20px 0px;
  }
  .supp-detail-info .supp-info-row {
    padding: 10px 0;
  }
  .supp-detail-info .supp-info-label {
    color: #222;
  }
  .supp-detail-info .supp-btn-opt {
    height: 42px;
    font-size: 14px;
  }
  .supp-detail-info .supp-func-tags {
    gap: 6px;
  }
  .supp-detail-info .supp-func-tag {
    padding: 2px 7px;
    font-size: 14px;
  }
  .supp-detail-info .supp-color-block {
    gap: 4px;
  }
  .supp-detail-info .supp-price-summary {
    padding-top: 14px;
    margin-top: 8px;
  }
  .supp-detail-info .supp-summary-row + .supp-summary-row {
    margin-top: 10px;
  }
  .supp-detail-info .supp-price-notice {
    margin-top: 6px;
    margin-bottom: 10px;
    font-size: 15px;
  }
  .supp-detail-info .supp-summary-val.highlight {
    font-size: 22px;
  }
.supp-detail-info .supp-summary-val.highlight span {
  font-size: 18px;
}
/* 아래 코드가 프로모션가 월·금액·원을 각각 다시 덮어씀 */
.supp-detail-info .supp-summary-val.highlight .supp-unit:first-child {
  font-size: 16px;
}

.supp-detail-info .supp-summary-val.highlight .num {
  font-size: 24px;
}

.supp-detail-info .supp-summary-val.highlight .supp-unit:last-child {
  font-size: 16px;
}
  .supp-detail-info .supp-card-benefit-box {
    padding: 12px 14px;
    margin-bottom: 8px;
  }
  .supp-detail-info .supp-card-header {
    margin-bottom: 6px;
    gap: 6px;
  }
  .supp-detail-info .supp-card-select-box {
    padding: 7px 10px;
  }
  .supp-detail-info .supp-final-price-section {
    padding-top: 14px;
    margin-top: 12px;
    margin-bottom: 8px;
  }
  .supp-detail-info .supp-final-row {
    margin-bottom: 6px;
  }
  .supp-detail-info .supp-final-amount-wrap {
    margin-bottom: 6px;
  }
  .supp-detail-info .supp-final-price {
    font-size: 24px;
  }
  .supp-detail-info .supp-final-unit {
    font-size: 18px;
    color: var(--primary);
  }
  .supp-detail-info .supp-action-buttons {
    margin-top: 18px;
    gap: 10px;
  }
  .supp-detail-info .supp-btn-kakao,
  .supp-detail-info .supp-btn-reserve {
    height: 48px;
    min-height: 48px;
    font-size: 15px;
  }
}

.supp-floating-consultation { position: fixed; right: 30px; top: 50%; transform: translateY(-50%); z-index: 900; }
.supp-floating-box { background: #fff; border: 1px solid #ddd; border-radius: 12px; padding: 20px; box-shadow: var(--shadow-main); width: 180px; text-align: center; }
.supp-floating-box h4 { font-size: 15px; margin-bottom: 15px; color: #333; }
.supp-consult-item { margin-bottom: 10px; text-align: left; }
.supp-consult-label { font-size: 11px; color: #999; display: block; }
.supp-consult-value { font-size: 14px; font-weight: 700; color: #333; }
.supp-consult-btn { width: 100%; height: 40px; background: var(--primary); color: #fff; border-radius: 6px; font-size: 13px; font-weight: 700; margin-top: 10px; }

.supp-bottom-fixed-bar { 
  position: fixed; 
  bottom: -100px;
  left: 50%; 
  transform: translateX(-50%);
  width: 75%; 
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.95); 
  border: 1px solid rgba(232, 113, 77, 0.2); 
  border-radius: 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); 
  z-index: 950; 
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s, bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
}
.supp-bottom-fixed-bar.active { opacity: 0.9; visibility: visible; bottom: 25px; }
.supp-bottom-bar-inner {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.supp-bottom-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.supp-bottom-product-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.supp-bottom-model-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}
.supp-bottom-price-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.supp-bottom-price-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.72);
}
.supp-bottom-price-val {
  font-size: 18px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}
.supp-bottom-action {
  flex-shrink: 0;
}
.supp-bottom-btns .supp-btn-rental:only-child,
.supp-bottom-action .supp-btn-rental { min-width: 120px; }
.supp-btn-consult { width: 130px; height: 48px; border: 1.5px solid #ddd; border-radius: 25px; font-weight: 700; font-size: 14px; background: #fff; }
.supp-btn-rental { width: auto; height: 48px; padding: 0 22px; background: var(--primary); color: #fff; border: none; border-radius: 25px; font-weight: 700; font-size: 14px; cursor: pointer; }

.supp-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 20px; }
.supp-modal-overlay.active { display: flex; }
.supp-modal-form { background: #fff; border-radius: 20px; width: 100%; max-width: 500px; padding: 35px; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-deep); }
.supp-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.supp-modal-header h3 { font-size: 22px; font-weight: 900; }

.supp-modal-product-summary { display: flex; gap: 15px; background: #f9f9f9; padding: 15px; border-radius: 12px; margin-bottom: 25px; align-items: center; border: 1px solid #eee; }
.supp-modal-product-img { width: 80px; height: 80px; background: #fff; border-radius: 8px; border: 1px solid #eee; overflow: hidden; }
.supp-modal-product-img img { width: 100%; height: 100%; object-fit: contain; }
.supp-modal-product-info h4 { font-size: 16px; font-weight: 800; color: #333; margin-bottom: 4px; }
.supp-modal-product-info p { font-size: 13px; color: #666; font-weight: 500; }
.supp-modal-rental-summary { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 14px 14px 10px; margin: -10px 0 18px; }
.supp-modal-rental-summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.supp-modal-rental-summary-item { border: 1px solid #f0f0f0; background: #fafafa; border-radius: 12px; padding: 10px 12px; }
.supp-modal-rental-summary-item--full { grid-column: 1 / -1; background: #fff7f4; border-color: rgba(232, 113, 77, 0.25); }
.supp-modal-rental-summary-label { font-size: 12px; font-weight: 800; color: #777; margin-bottom: 4px; letter-spacing: -0.2px; }
.supp-modal-rental-summary-value { font-size: 14px; font-weight: 800; color: #222; letter-spacing: -0.2px; }
.supp-modal-rental-summary-value--highlight { color: var(--primary); font-size: 15px; }
.supp-modal-rental-summary-hint { margin: 10px 2px 0; font-size: 12px; color: #888; }

.supp-form-group { margin-bottom: 18px; }
.supp-form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #333; }
.supp-form-group input, .supp-form-group select, .supp-form-group textarea { width: 100%; border: 1.5px solid #eee; border-radius: 8px; padding: 12px 15px; font-size: 14px; background: #fcfcfc; }
.supp-form-agree { display: flex; align-items: center; gap: 10px; margin: 25px 0; font-size: 13px; color: #666; }
.supp-btn-submit { width: 100%; height: 56px; background: var(--primary); color: #fff; border-radius: 10px; font-size: 16px; font-weight: 800; margin-top: 10px; }

@media (max-width: 1024px) {
  .supp-detail-top { grid-template-columns: 1fr; gap: 40px; }
  .supp-bottom-fixed-bar { width: 90%; }
  /* 태블릿·좁은 노트북: 제목 vw 비중↑·상한 낮춤 */
  .supp-product-main-title {
    font-size: clamp(14px, 0.45rem + 2.35vw, 22px);
    line-height: 1.28;
  }
  .supp-product-sub-desc {
    font-size: clamp(14px, 0.4rem + 1.15vw, 18px);
  }
  .supp-main-thumb img { padding:3rem; }
}

@media (max-width: 768px) {
  /* 제품상세 하단 고정바: 화면 맨 아래 풀폭·주황 배경·가독성 */
  .supp-bottom-fixed-bar {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
    bottom: -120px;
    background: linear-gradient(180deg, #f07850 0%, #e8714d 38%, #d94a1f 100%);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
    box-sizing: border-box;
  }
  .supp-bottom-fixed-bar.active {
    bottom: 0;
    opacity: 1;
  }
  .supp-bottom-bar-inner {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px)) 16px;
    justify-content: center;
  }
  .supp-bottom-center {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .supp-bottom-product-name {
    max-width: 140px;
    font-size: 13px;
  }
  .supp-bottom-model-name {
    font-size: 12px;
  }
  .supp-bottom-price-label {
    font-size: 11px;
    font-weight: 800;
    color: rgba(26, 26, 26, 0.72);
  }
  .supp-bottom-price-val {
    font-size: 17px;
    font-weight: 900;
    color: #FFFFFF;
  }
  .supp-bottom-action .supp-btn-rental {
    min-width: 108px;
    height: 46px;
    font-size: 15px;
    font-weight: 900;
    padding: 0 18px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .supp-bottom-action .supp-btn-rental:hover {
    background: #fffaf8;
    color: #c73d18;
  }
  .supp-bottom-action .btn.btn-primary,
  .supp-bottom-action .btn-primary {
    height: 50px;
    min-width: 0;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 900;
    background: #fff;
    color: var(--primary-dark);
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .supp-bottom-action .btn.btn-primary:hover,
  .supp-bottom-action .btn-primary:hover {
    background: #fffaf8;
    color: #c73d18;
    transform: none;
  }
  .supp-bottom-action .btn {
    flex: 1;
    border-radius: 12px;
    font-weight: 900;
  }


  /* 제품상세 모바일 폰트 축소 (줄바꿈·겹침 방지) */
  .supp-product-top-info { padding: 18px 0 12px; }
  .supp-product-head-row { gap: 10px 12px; align-items: flex-start; }
  .supp-product-model-no { font-size: 11px; }
  .supp-product-main-title { font-size: clamp(13px, 2.8vw + 0.35rem, 20px); line-height: 1.28; }
  .supp-product-sub-desc { font-size: 14px; margin-bottom: 10px; }
  .supp-product-benefit-tags { gap: 6px; margin-bottom: 0; }
  .supp-benefit-tag-main { font-size: 10px; padding: 2px 6px; }
  .supp-benefit-tag-sub { font-size: 11px; }
  .supp-product-actions-top { gap: 12px; padding-top: 0; }
  .supp-action-item span { font-size: 10px; }
  .supp-product-rating-top { bottom: 10px; }
  .supp-rating-star { font-size: 14px; }
  .supp-rating-score { font-size: 12px; }
  .supp-rating-count { font-size: 11px; }
  .supp-detail-info { gap: 0; padding: 8px 0 12px; }
  .supp-info-row { padding: 8px 0; }
  .supp-info-label { width: 90px; font-size: 12px; }
  .supp-btn-opt { height: 44px; font-size: 13px; color: #333; font-weight: 600; }
  .supp-func-tag { padding: 4px 10px; font-size: 11px; }
  .supp-price-summary { padding-top: 10px; margin-top: 4px; }
  .supp-summary-row { margin-bottom: 0; }
  .supp-price-summary .supp-summary-row + .supp-summary-row { margin-top: 8px; }
  .supp-price-summary .supp-price-notice { margin-top: 6px; }
  .supp-summary-label { font-size: 12px; }
  .supp-summary-val { font-size: 14px; }
  .supp-summary-val.highlight { font-size: 20px; }
  .supp-summary-val.highlight span { font-size: 13px; }
  .supp-price-notice { font-size: 11px; }
  .supp-price-desc { font-size: 11px; }
  .supp-card-title { font-size: 12px; }
  .supp-card-subtitle { font-size: 10px; }
  .supp-card-more { font-size: 10px; }
  .supp-card-select-text { font-size: 12px; }
  .supp-final-label { font-size: 12px; }
  .supp-final-price { font-size: 24px; }
  .supp-final-unit { font-size: 14px; }
  .supp-final-notice { font-size: 10px; }
  .supp-final-price-section { padding-top: 10px; margin-top: 10px; margin-bottom: 4px; }
  .supp-final-amount-wrap { margin-bottom: 6px; }
  .supp-action-buttons { margin-top: 16px; padding: 0 8px; }
  .supp-btn-reserve { height: 52px; padding: 0 12px; font-size: 15px; border-radius: 10px; }
  .supp-btn-kakao { height: 52px; min-height: 52px; padding: 0 12px; font-size: 15px; border-radius: 10px; }
  /* 모바일도 메인 썸네일은 정사각형(컨테이너 너비 기준) */
  .supp-main-thumb {
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: none;
  }
  .supp-side-badge { min-width: 40px; max-width: 80px; min-height: 44px; font-size: 9px; padding: 4px 6px; }
  .supp-main-thumb img { padding: 1.25rem; }
}

/* ===== 상세 페이지 브레드크럼 ===== */
.supp-breadcrumbs { padding: 18px 0 0px; font-size: 13px; color: var(--text-light); /*margin-bottom: 20px; */display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.supp-breadcrumbs a { color: var(--text-light); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.supp-breadcrumbs a:hover { color: var(--primary); }
.supp-breadcrumbs span { color: #ccc; font-size: 11px; }
.supp-breadcrumbs span:last-child { color: var(--text-sub); font-weight: 600; font-size: 13px; }

/* ===== 후기 탭 헤더 및 작성 버튼 ===== */
.review-tab-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.review-tab-summary h3 { font-size: 22px; font-weight: 800; color: var(--text-main); margin-bottom: 6px; }
.review-tab-summary p { font-size: 14px; color: var(--text-sub); }
.btn-write-review { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: var(--primary); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-write-review:hover { background: var(--primary-dark, #c95e3a); transform: translateY(-1px); }
.btn-write-review svg { flex-shrink: 0; }

/* ===== 이벤트혜택(프로모션) 페이지 - promotion.html 스타일 ===== */
.promo-hero { background: linear-gradient(135deg, #E8714D 0%, #E60012 100%); padding: 80px 0 60px; text-align: center; color: #fff; }
.promo-hero h1 { font-size: 42px; font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.promo-hero p { font-size: 17px; opacity: 0.88; }
.promo-tab-nav { background: #fff; border-bottom: 2px solid #f0f0f0; position: sticky; top: 80px; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.promo-tab-nav .container { display: flex; }
.promo-tab-btn { flex: 1; padding: 20px 10px; background: none; border: none; font-size: 15px; font-weight: 600; color: #888; cursor: pointer; border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; text-align: center; letter-spacing: -0.3px; text-decoration: none; color: inherit; }
.promo-tab-btn:hover { color: #E8714D; }
.promo-tab-btn.active { color: #E8714D; border-bottom-color: #E8714D; }
.promo-tab-content { display: none; padding: 15px 0 80px; }
.promo-tab-content.active { display: block; }

/* 이벤트 리스트 그리드 (2열 → 모바일 1열) */
.promo-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 56px;
  padding-top: 4px;
}
.promo-event-card {
  display: block;
  text-align: left;
  text-decoration: none;
  color: inherit;
  margin: 0;
}
.promo-event-card--link {
  cursor: pointer;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.promo-event-card--link:hover {
  opacity: 0.94;
  transform: translateY(-2px);
}
.promo-event-card--link:hover .promo-event-card__title { color: #c45a2a; }
.promo-event-card--link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}
.promo-event-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 0;
}
.promo-event-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.promo-event-card__media img,
.promo-event-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.promo-event-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  font-size: 14px;
  font-weight: 600;
  color: #9a9a9a;
}
.promo-event-card__title {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.035em;
  margin: 20px 0 12px;
  color: #111;
  transition: color 0.2s ease;
}
.promo-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}
.promo-event-dday {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 14px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 4px;
  flex-shrink: 0;
}
.promo-event-dates {
  font-size: 13px;
  color: #888;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.promo-event-empty {
  text-align: center;
  padding: 72px 20px 100px;
  color: #999;
}
.promo-event-empty p {
  font-size: 17px;
  font-weight: 800;
  color: #444;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.promo-event-empty-hint { font-size: 14px; color: #999; }

/* 이벤트 프로모션 상세 (/promotion/{id}) */
.promo-event-detail { padding-top: 8px; }
.promo-event-detail__nav { margin-bottom: 28px; }
.promo-event-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.promo-event-detail__back::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 2px;
  opacity: 0.85;
}
.promo-event-detail__back:hover { color: #c45a2a; }
.promo-event-detail__article { max-width: 1200px; margin: 0 auto; text-align: left; }
.promo-event-detail__header {
  margin-bottom: 24px;
}
.promo-event-detail__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  color: #111;
}
.promo-event-detail__header .promo-event-detail__meta {
  margin-top: 0;
  margin-bottom: 0;
}
/* 상세: 히어로는 그대로 두고, 본문 이미지는 잘라내지 않고 원본 비율 전체 노출 */
.promo-event-detail__media {
  position: relative;
  width: 100%;
  background: #f2f2f2;
  border-radius: 0;
}
.promo-event-detail__media picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.promo-event-detail__media img,
.promo-event-detail__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.promo-event-detail__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  font-size: 15px;
  font-weight: 600;
  color: #9a9a9a;
}
/* 에디터(상세 HTML) 본문 */
.promo-event-detail__rte {
  width: 100%;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.65;
  color: #222;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.promo-event-detail__rte img,
.promo-event-detail__rte video,
.promo-event-detail__rte iframe {
  max-width: 100%;
  height: auto;
}
.promo-event-detail__rte table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.promo-event-detail__rte table tbody {
  display: table;
  width: 100%;
}
.promo-event-detail__rte th,
.promo-event-detail__rte td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  vertical-align: top;
}
.promo-event-detail__rte a {
  color: var(--primary, #c45a2a);
  text-decoration: underline;
}
.promo-event-detail__meta { margin-bottom: 0; }
.promo-event-detail__dates { font-size: clamp(13px, 1.1vw, 15px); }
.promo-event-detail__actions { margin-top: 32px; padding-top: 8px; }
.promo-event-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.18s ease;
}
.promo-event-detail__cta:hover {
  background: #333;
  transform: translateY(-1px);
}
.promo-event-detail__cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.promo-event-detail__bottom-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding: 32px 24px 8px;
  border-top: 1px solid #e8e8e8;
  box-sizing: border-box;
}
.promo-event-detail__bottom-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 18px 44px;
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
  text-decoration: none;
  text-align: center;
  border-radius: 14px;
  border: 0;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  box-sizing: border-box;
  max-width: min(100%, 420px);
  width: auto;
}
.promo-event-detail__bottom-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.12);
}
.promo-event-detail__bottom-cta:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 1px 4px rgba(0, 0, 0, 0.08);
}
.promo-event-detail__bottom-cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.promo-image-area { width: 100%; min-height: 500px; background: #f8f8f8; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; color: #bbb; font-size: 16px; border: 2px dashed #e0e0e0; margin-bottom: 24px; }
.promo-image-area svg { opacity: 0.3; }
.promo-image-area span { font-size: 14px; color: #ccc; }
.promo-image-area img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; min-height: 300px; }
a.promo-image-area--link {
  text-decoration: none;
  color: inherit;
  border-style: solid;
  border-color: transparent;
  cursor: pointer;
  overflow: hidden;
}
a.promo-image-area--link:hover {
  opacity: 0.96;
}
.promo-event-viewer { display: flex; flex-direction: column; gap: 12px; }
.promo-event-main-item { display: none; }
.promo-event-main-item.active { display: block; }
.promo-image-area--event { margin-bottom: 0; min-height: 540px; border-style: solid; border-color: #eceff4; background: #fff; }
.promo-image-area--event img { border-radius: 14px; }
/* 사은품 탭(/promotion?tab=gift): 이미지 블록 가로 최대 1000px, 가운데 정렬 */
#tab-gift .promo-image-area {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#tab-gift .promo-image-area--event:not(:last-child) {
  margin-bottom: 24px;
}
.promo-event-thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; align-items: stretch; }
.promo-event-thumb { -webkit-appearance: none; appearance: none; padding: 0; margin: 0; border: 1px solid #e5e7eb; background: #fff; border-radius: 10px; cursor: pointer; overflow: hidden; height: 104px; display: block; line-height: 0; opacity: 0.75; transition: opacity .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
/* 가로 100% 비율 유지 후 아래만 잘라 상단 노출 — cover 확대로 인한 깨짐 완화 */
.promo-event-thumb picture { display: block; width: 100%; line-height: 0; }
.promo-event-thumb img { width: 100%; height: auto; display: block; border-radius: 0; vertical-align: top; }
.promo-event-thumb:hover { opacity: 1; border-color: #cbd5e1; transform: translateY(-1px); }
.promo-event-thumb.active { opacity: 1; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(0, 169, 224, 0.18); }
.promo-event-thumb:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.promo-event-thumb-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: #9ca3af; font-size: 12px; }
.card-benefit-section { margin-top: 40px; }
.card-benefit-title { font-size: 22px; font-weight: 800; color: #222; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid #f0f0f0; }
.card-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-item { background: #fff; border: 1.5px solid #eee; border-radius: 14px; padding: 24px 20px; display: flex; align-items: center; gap: 16px; transition: box-shadow 0.2s, border-color 0.2s; cursor: pointer; }
.card-item:hover { box-shadow: 0 6px 24px rgba(232,113,77,0.13); border-color: #E8714D; }
a.card-item--link { text-decoration: none; color: inherit; box-sizing: border-box; }
a.card-item--link:hover { color: inherit; }
.detail-content-section .promo-image-area { margin-top: 0; }
.card-icon-box { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, #E8714D, #E60012); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-icon-box img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; background: #fff; }
.card-info h5 { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.card-info p { font-size: 13px; color: #E8714D; font-weight: 600; }
.gift-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.gift-item { background: #fff; border: 1.5px solid #eee; border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; display: block; }
.gift-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.gift-img { width: 100%; aspect-ratio: 1/1; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #999; font-size: 14px; }
.gift-body { padding: 14px 16px; }
.gift-tag { display: inline-block; background: #FFF0EB; color: #E8714D; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; }
.gift-name { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.gift-desc { font-size: 12px; color: #999; }
@media (max-width: 900px) {
  .card-list { grid-template-columns: repeat(2, 1fr); }
  .gift-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-hero h1 { font-size: 28px; }
  .promo-event-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .promo-image-area--event { min-height: 420px; }
  .promo-event-grid { gap: 36px 32px; }
}
@media (max-width: 768px) {
  .promo-event-grid { grid-template-columns: 1fr; gap: 40px; }
  .promo-event-card__title { margin-top: 16px; margin-bottom: 10px; font-size: 15px; }
  .promo-event-dates { font-size: 12px; }
  .promo-event-detail__nav { margin-bottom: 18px; }
  .promo-event-detail__header { margin-bottom: 20px; }
  .promo-event-detail__title { margin-bottom: 12px; }
  .promo-event-detail__actions { margin-top: 26px; }
  .promo-event-detail__cta { width: 100%; justify-content: center; }
  .promo-event-detail__bottom-cta-wrap {
    margin-top: 32px;
    padding: 28px 20px 4px;
  }
  .promo-event-detail__bottom-cta {
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    padding: 16px 28px;
    border-radius: 12px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .promo-tab-btn { font-size: 13px; padding: 16px 6px; }
  .card-list { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .promo-hero h1 { font-size: 24px; }
  .promo-tab-content { padding: 36px 0 60px; }
  .promo-event-thumbs { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 4px; }
  .promo-event-thumb { width: 100px; min-width: 100px; height: 76px; }
  .promo-image-area--event { min-height: 280px; }
  .promo-event-grid { gap: 32px; }
  .promo-event-dday { font-size: 11px; padding: 4px 11px; min-height: 28px; }
}

/* ===== 검색 결과 페이지 (search.html) ===== */
.search-hero { background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f8 100%); padding: 60px 0 40px; border-bottom: 1px solid #eee; }
.search-hero-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.search-hero-label { font-size: 13px; color: #999; margin-bottom: 16px; letter-spacing: -0.2px; }
.search-hero-bar { display: flex; align-items: center; background: #fff; border: 2px solid var(--primary); border-radius: 50px; padding: 0 24px; height: 60px; max-width: 680px; box-shadow: 0 8px 30px rgba(232, 113, 77, 0.12); }
.search-hero-bar input { flex: 1; border: none; outline: none; font-size: 17px; font-weight: 500; color: var(--text-main); background: transparent; }
.search-hero-bar input::placeholder { color: #bbb; }
.search-hero-bar button { background: var(--primary); border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 8px; }
.search-hero-bar button:hover { background: var(--primary-dark); }
.search-result-section { max-width: var(--container-width); margin: 0 auto; padding: 50px 40px 100px; }
.search-result-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid #f0f0f0; }
.search-result-title { font-size: 20px; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; }
.search-result-title span { color: var(--primary); }
.search-result-count { font-size: 14px; color: #999; }
.search-filter-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.search-filter-tabs .filter-tab-btn { padding: 8px 20px; border: 1.5px solid #e0e0e0; border-radius: 50px; background: #fff; font-size: 13px; font-weight: 600; color: #666; cursor: pointer; text-decoration: none; display: inline-block; }
.search-filter-tabs .filter-tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.search-filter-tabs .filter-tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.search-sub-sort { margin-bottom: 4px; }
.search-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.no-result { text-align: center; padding: 80px 20px; }
.no-result-icon { width: 80px; height: 80px; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.no-result h3 { font-size: 22px; font-weight: 800; color: #333; margin-bottom: 12px; }
.no-result p { font-size: 15px; color: #999; }
@media (max-width: 768px) { .search-hero { padding: 40px 0 28px; } .search-hero-inner { padding: 0 20px; } .search-hero-bar { height: 52px; padding: 0 18px; } .search-result-section { padding: 30px 20px 80px; } .search-result-header { flex-direction: column; align-items: flex-start; gap: 8px; } .search-product-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; } }
@media (max-width: 480px) { .search-product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ===== review_board 스타일 페이징 ===== */
.board-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; padding: 8px 0 2px; }
.board-pagination .pagination-list { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; flex-wrap: wrap; }
.page-btn {
  min-width: 40px; height: 40px; padding: 0 12px; border: 1.5px solid #e7ebf3; border-radius: 12px;
  background: #fff; font-size: 14px; font-weight: 700; color: #2f3747; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: 0 5px 14px rgba(232, 113, 77, 0.16); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; cursor: default; }
.page-btn.arrow { font-size: 16px; }
.page-btn.disabled { opacity: 0.35; cursor: not-allowed; }
.page-btn.dots { border: none; background: transparent; cursor: default; width: auto; }

/* ===== 리뷰게시판 (review_board 스타일) ===== */
.board-hero { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); padding: 80px 0 60px; text-align: center; color: #fff; }
.board-hero h1 { font-size: 40px; font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; }
.board-hero p { font-size: 16px; opacity: 0.7; }
.board-hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 32px; flex-wrap: wrap; }
.review-page-hero-banner { margin: 0; padding: 0; width: 100%; max-height: min(52vw, 380px); overflow: hidden; background: #eceff4; }
.review-page-hero-banner img { width: 100%; height: min(52vw, 380px); object-fit: cover; object-position: center; display: block; }
.review-page-hero-stats-bar { background: #f4f6f9; border-bottom: 1px solid #e8eaef; padding: 22px 0; }
.review-page-hero-stats-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.review-page-hero-stats-bar .board-stat .num { color: var(--primary); }
.review-page-hero-stats-bar .board-stat .label { color: #666; opacity: 1; }
.board-stat { text-align: center; }
.board-stat .num { font-size: 32px; font-weight: 900; color: var(--primary); display: block; }
.board-stat .label { font-size: 13px; opacity: 0.6; margin-top: 4px; }
.board-filter-bar { background: #fff; border-bottom: 1px solid #f0f0f0; padding: 16px 0; position: sticky; top: 80px; z-index: 90; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
@media (max-width: 768px) {
  .promo-tab-nav { top: 118px; }
  .board-filter-bar { top: 118px; }
}
.board-filter-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.board-total { font-size: 13px; color: #999; }
.board-write-btn-wrap { margin-bottom: 0; }
.board-write-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--primary); color: #fff; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.board-write-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }
.review-board-section { padding: 40px 0 80px; }
.review-board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rb-card { background: #fff; border: 1.5px solid #f0f0f0; border-radius: 16px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.rb-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.rb-card-img { width: 100%; aspect-ratio: 1/1; background: #f5f5f5; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.rb-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rb-no-img { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #ccc; font-size: 12px; }
.rb-img-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.55); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.rb-card-body { padding: 14px 16px 16px; }
.rb-card-stars { color: var(--primary); font-size: 13px; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.rb-card-stars span { color: #999; font-size: 12px; }
.rb-card-product { font-size: 11px; color: var(--primary); font-weight: 700; margin-bottom: 6px; background: #FFF0EB; display: inline-block; padding: 2px 8px; border-radius: 4px; }
.rb-card-text { font-size: 13px; color: #444; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.rb-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #bbb; }
.rb-card-user { font-weight: 600; color: #888; }
@media (max-width: 1100px) { .review-board-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .review-board-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .board-hero h1 { font-size: 28px; } .board-hero-stats { gap: 28px; } .board-stat .num { font-size: 24px; } .board-filter-inner { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) { .review-board-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ===== 심플 드롭다운 (이벤트혜택 등 2차 메뉴) — PC 가로 배열 (.gnb는 768px 이하 비표시) ===== */
.simple-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  padding: 6px 10px;
  min-width: auto;
  max-width: min(720px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.gnb > li:hover .simple-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.simple-dropdown li {
  flex: 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}
.simple-dropdown li + li::before {
  content: '|';
  color: #ddd;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  padding: 0 10px;
  user-select: none;
  pointer-events: none;
}
.simple-dropdown li a {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border-radius: 8px;
}
.simple-dropdown li a:hover { color: var(--primary); background: var(--primary-light); }

/* ===== 모바일 메뉴 parent 스타일 ===== */
.mobile-nav-parent { display: flex !important; justify-content: space-between; align-items: center; }
.mobile-arrow { font-size: 18px; color: #bbb; transition: transform 0.3s ease; font-style: normal; }
.mobile-nav-parent.open .mobile-arrow { transform: rotate(90deg); color: var(--primary); }

/* ===== PC(1025px 이상): 헤더·플로팅·메인 하단 구독문의·제품상세 하단바 ===== */
@media (min-width: 1025px) {
  body { padding-top: 108px; }
  .site-header .header-inner {
    height: 108px;
    padding-left: 26px;
    padding-right: 26px;
    gap: 12px;
  }
  .gnb {
    margin-left: 28px;
  }
  .logo-img {
    height: 62px;
    max-height: 66px;
    max-width: 176px;
  }
  .header-search {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 380px;
    margin-left: 12px;
    margin-right: 12px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
  }
  .search-input {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }
  .search-btn { font-size: 17px; }
  .header-contact {
    gap: 6px;
    flex-shrink: 0;
  }
  .contact-label {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.04em;
  }
  .contact-number {
    font-size: 32px;
    letter-spacing: -0.7px;
    color: var(--accent-red);
  }
  .mega-menu { top: 108px; }
  .detail-tabs { top: 108px; }
  .promo-tab-nav { top: 108px; }
  .board-filter-bar { top: 108px; }

  /* 우측 플로팅 상담 네모 박스 */
  .floating-box {
    width: 328px;
    padding: 30px 28px;
  }
  .floating-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .floating-box .consult-item {
    margin-bottom: 16px;
  }
  .floating-box .consult-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #777;
  }
  .floating-box .consult-item .consult-value {
    font-size: 24px;
  }
  .floating-box .consult-value-phone {
    color: var(--accent-red);
  }
  .floating-box .consult-value-meta {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #444 !important;
  }
  .floating-box .consult-btn,
  .floating-box a.consult-btn {
    font-size: 17px;
    font-weight: 800;
    padding: 14px 16px;
    margin-top: 14px;
  }

  /* 메인 등: 하단 구독문의 바 — 가독성·전화 강조 */
  .bottom-fixed-bar.bottom-bar-inquiry {
    width: 96%;
    max-width: 1100px;
  }
  .bottom-bar-inquiry-inner {
    padding: 16px 22px !important;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form {
    gap: 10px;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form {
    gap: 10px;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-title {
    font-size: 21px;
    color: #1a1a1a;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-phone {
    font-size: 26px;
    color: var(--accent-red);
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-field label {
    color: #444;
    font-size: 13px;
    font-weight: 800;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-agree,
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-agree label {
    color: #444;
    font-size: 13px;
    font-weight: 600;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-privacy-origin {
    color: #666;
    font-size: 13px;
  }
  .bottom-bar-inquiry-inner .subscription-inquiry-form .si-form .si-submit {
    font-size: 16px;
    padding: 13px 26px;
    font-weight: 800;
  }

  /* 제품 상세 하단바(PC): 렌탈신청 버튼과 동일한 주황 배경 + 대비 */
  .supp-bottom-fixed-bar {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    bottom: -100px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--primary);
    box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.16);
    backdrop-filter: none;
  }
  .supp-bottom-fixed-bar.active {
    bottom: 0;
    opacity: 1;
  }
  .supp-bottom-bar-inner {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 14px 162px;
    min-height: 60px;
    box-sizing: border-box;
  }
  .supp-bottom-center {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .supp-bottom-product-name {
    max-width: 220px;
    font-size: 16px;
  }
/* 모델명 뒤의 남는 공간을 모두 확보 */
.supp-bottom-model-name {
  margin-right: auto;
  font-size: 14px;
}
  .supp-bottom-price-label {
    color: rgba(26, 26, 26, 0.75);
    font-size: 13px;
    font-weight: 700;
  }
  .supp-bottom-price-val {
    font-size: 20px;
    font-weight: 900;
    color: #FFFFFF;
  }
  .supp-bottom-action .supp-btn-rental {
    height: 48px;
    min-width: 132px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .supp-bottom-action .supp-btn-rental:hover {
    background: #fffaf8;
    color: #c73d18;
  }
  .supp-bottom-action .btn.btn-primary,
  .supp-bottom-action .btn-primary {
    height: 50px;
    font-size: 15px;
    font-weight: 900;
    background: #fff;
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .supp-bottom-action .btn.btn-primary:hover,
  .supp-bottom-action .btn-primary:hover {
    background: #fffaf8;
    color: #c73d18;
    transform: none;
  }
}

/* —— 메인 레이어 팝업 —— */
.site-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site-popup-layer.is-visible {
  pointer-events: auto;
}

.site-popup-layer[hidden] {
  display: none !important;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.site-popup-shell {
  position: absolute;
  left: var(--site-popup-x, 50%);
  top: var(--site-popup-y, 50%);
  transform: translate(-50%, -50%);
  width: auto;
  min-width: min(320px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  max-height: min(85vh, 880px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  text-align: left;
}

.site-popup-head {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #fffaf8 0%, #fff 100%);
}

.site-popup-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-main);
  line-height: 1.35;
  padding-right: 8px;
}

.site-popup-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--text-sub);
  background: rgba(0, 0, 0, 0.04);
  transition: background 0.15s, color 0.15s;
}

.site-popup-close:hover {
  background: rgba(230, 0, 18, 0.08);
  color: var(--accent-red);
}

.site-popup-body {
  flex: 1 1 auto;
  overflow: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px 20px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.65;
}

.site-popup-body * {
  max-width: 100%;
}

.site-popup-body img {
  max-width: 100% !important;
  height: auto !important;
}

.site-popup-body table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

.site-popup-body pre,
.site-popup-body code {
  white-space: pre-wrap;
  word-break: break-word;
}

.site-popup-foot {
  flex: 0 0 auto;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-sub);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.site-popup-btn-ghost {
  background: #fff;
  border: 1px solid var(--border-main);
  color: var(--text-sub);
}

.site-popup-btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.site-popup-btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}

.site-popup-btn-primary:hover {
  background: var(--primary-dark);
}

body.site-popup-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .site-popup-shell {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    border-radius: 14px;
    max-height: min(88vh, 900px);
  }
  .site-popup-head {
    padding: 14px 16px 10px;
  }
  .site-popup-title {
    font-size: 1.05rem;
  }
  .site-popup-body {
    padding: 12px 16px 16px;
    font-size: 14px;
  }
  .site-popup-foot {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .site-popup-btn {
    width: 100%;
  }
}

/* 하단 고정 배너 V2 (IP 미리보기) */
/*
.bottom-bar-v2 {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 920;
  background: linear-gradient(90deg, #e60012 0%, #f03518 45%, #ff6a28 100%);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, visibility 0.45s;
}
.bottom-bar-v2.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.bottom-bar-v2__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bottom-bar-v2__phone {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.bottom-bar-v2__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.bottom-bar-v2__phone-text {
  min-width: 0;
}
.bottom-bar-v2__phone-number {
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.bottom-bar-v2__phone-number:hover {
  color: #fff;
  text-decoration: underline;
}
.bottom-bar-v2__phone-sub {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}
.bottom-bar-v2__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.bottom-bar-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.bottom-bar-v2__btn:hover {
  filter: brightness(0.98);
}
.bottom-bar-v2__btn:active {
  transform: scale(0.98);
}
.bottom-bar-v2__btn--consult {
  background: #fff;
  color: #e60012;
}
.bottom-bar-v2__btn--kakao {
  background: #fee500;
  color: #191919;
}
.bottom-bar-v2__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bottom-bar-v2__btn-icon--kakao img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.bottom-bar-v2__btn-arrow {
  font-size: 14px;
  font-weight: 900;
  margin-left: 2px;
}
.bottom-bar-v2__qr {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}
.bottom-bar-v2__qr-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.bottom-bar-v2__qr-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.bottom-bar-v2__qr-copy {
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.bottom-bar-v2__qr-copy p {
  margin: 0;
}
.bottom-bar-v2__qr-copy strong {
  font-weight: 800;
}
.bottom-bar-v2__qr-id {
  margin-top: 2px !important;
  font-size: 11px;
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .bottom-bar-v2__inner {
    padding: 12px 24px;
    gap: 16px;
  }
  .bottom-bar-v2__btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
  .bottom-bar-v2__qr-copy {
    display: none;
  }
}
@media (max-width: 768px) {
  .bottom-bar-v2__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
  }
  .bottom-bar-v2__phone {
    padding-right: 0;
    border-right: none;
    justify-content: center;
    text-align: center;
  }
  .bottom-bar-v2__phone-text {
    text-align: left;
  }
  .bottom-bar-v2__actions {
    flex-direction: column;
    width: 100%;
  }
  .bottom-bar-v2__btn {
    width: 100%;
  }
  .bottom-bar-v2__qr {
    display: none;
  }
  body.has-bottom-bar-v2 .floating-side-rail {
    bottom: calc(160px + env(safe-area-inset-bottom, 0px));
  }
  body.has-bottom-bar-v2 main {
    padding-bottom: calc(160px + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 769px) {
  body.has-bottom-bar-v2 main {
    padding-bottom: 96px;
  }
}
*/